Android TextInputLayout legacy style

Viewed 88

Android's new material TextInputLayout just supports two boxed and outlined style.

enter image description here

Is there any way to switch to legacy style (that was in support library)

enter image description here

1 Answers

You can use:

 <com.google.android.material.textfield.TextInputLayout
    style="@style/Widget.Design.TextInputLayout"
Related