Я работаю на экране входа в систему, где хочу реализовать редактирование текста материала в следующем виде:
Ниже приведен мой код:
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
style="@style/ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox"
android:layout_height="wrap_content">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="This is Hint"/>
</com.google.android.material.textfield.TextInputLayout>
Но OutlinedBox не появляется.Вот как это выглядит:
PLease help.