Merge pull request #548 from PhilKes/fix/reminders-dialog-scroll

Reduce reminder dialog padding and add scrolling
This commit is contained in:
Phil 2025-04-18 14:54:24 +02:00 committed by GitHub
commit 07ff5691e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,11 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbarAlwaysDrawVerticalTrack="true">
<RadioGroup
android:id="@+id/RepetitionOptions"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:padding="16dp">
android:paddingTop="2dp"
android:paddingStart="16dp"
android:paddingEnd="16dp">
<RadioButton
android:id="@+id/None"
@ -43,5 +49,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/custom" />
</RadioGroup>
</RadioGroup>
</ScrollView>