Files
grayjay/app/src/main/res/layout/big_button_group.xml
T
2023-10-25 12:16:58 +02:00

24 lines
794 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/header_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/migration"
android:fontFamily="@font/inter_light"
android:textSize="18dp"
android:layout_marginTop="12dp"
android:layout_marginBottom="8dp"/>
<LinearLayout
android:id="@+id/buttons"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</LinearLayout>