TextInputLayout не работает стиль OutlinedBox

Возникла проблема при добавлении TextInputLayout делаю всё правильно но не могу понять в чём проблема т. к. добавляю стиль "Widget.MaterialComponents.TextInputLayout.OutlinedBox", но вокруг него не появляется обводки, а остаётся как обычно. Предоставляю код:

<com.google.android.material.textfield.TextInputLayout
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="Имя пользователя"
    android:theme="@style/Theme.MaterialComponents">

    <com.google.android.material.textfield.TextInputEditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>

Ответы (0 шт):