Я пытаюсь создать страницу регистрации для приложения в Visual Studio, но всякий раз, когда я пытаюсь добавить app: errorEnabled = "true" к любому из TextInputLayouts, я получаю сообщение об ошибке для всех моих идентификаторов, которые не содержат определение. В тот момент, когда я удаляю его, ошибки исчезают.
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/emailField"
android:textColor="@color/white"
android:textColorHint="@color/white"
android:layout_marginHorizontal="23dp"
app:errorEnabled="true"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_marginBottom="15dp">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/emailTxt"
android:textColor="@color/white"
android:textSize="16sp"
android:inputType="textEmailAddress"/>
</android.support.design.widget.TextInputLayout>
Вот изображение ошибок, которые я получаю