We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7c8ce7 + 1a3fa08 commit 8e7c393Copy full SHA for 8e7c393
lib/app/modules/addOrUpdateAlarm/views/repeat_tile.dart
@@ -31,9 +31,10 @@ class RepeatTile extends StatelessWidget {
31
},
32
backgroundColor: themeController.secondaryBackgroundColor.value,
33
builder: (BuildContext context) {
34
- return Container(
35
- height: height * 0.45,
+ return SingleChildScrollView(
+ scrollDirection: Axis.vertical,
36
child: Column(
37
+ mainAxisSize: MainAxisSize.min,
38
children: [
39
buildDailyTile(),
40
Container(
@@ -61,6 +62,7 @@ class RepeatTile extends StatelessWidget {
61
62
padding: const EdgeInsets.only(
63
left: 25,
64
right: 25,
65
+ bottom: 25
66
),
67
child: TextButton(
68
style: ButtonStyle(
0 commit comments