launcher/app/src/main/res/layout/dialog_create_widget_panel.xml
Josia Pietsch a4fcdf60c7
Some checks failed
Android CI / build (push) Has been cancelled
add widget panels (see #44)
2025-04-26 21:52:21 +02:00

18 lines
No EOL
647 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/AlertDialogCustom"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/dialog_create_widget_panel_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:importantForAutofill="no"
android:inputType="text"
tools:ignore="LabelFor" />
</LinearLayout>