dialog_stub_textinput.xml 694 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingHorizontal="24dp"
  6. android:paddingVertical="16dp">
  7. <com.google.android.material.textfield.TextInputLayout
  8. android:id="@+id/text_field"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content">
  11. <eu.kanade.tachiyomi.widget.TachiyomiTextInputEditText
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content" />
  14. </com.google.android.material.textfield.TextInputLayout>
  15. </FrameLayout>