Skip to content

Commit 8e7c393

Browse files
Merge pull request #598 from Gaurav-Kushwaha-1225/SmallScreenOverflow
Bottom Overflow in Repeat Tile UI on Small Screen Devices
2 parents c7c8ce7 + 1a3fa08 commit 8e7c393

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/app/modules/addOrUpdateAlarm/views/repeat_tile.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ class RepeatTile extends StatelessWidget {
3131
},
3232
backgroundColor: themeController.secondaryBackgroundColor.value,
3333
builder: (BuildContext context) {
34-
return Container(
35-
height: height * 0.45,
34+
return SingleChildScrollView(
35+
scrollDirection: Axis.vertical,
3636
child: Column(
37+
mainAxisSize: MainAxisSize.min,
3738
children: [
3839
buildDailyTile(),
3940
Container(
@@ -61,6 +62,7 @@ class RepeatTile extends StatelessWidget {
6162
padding: const EdgeInsets.only(
6263
left: 25,
6364
right: 25,
65+
bottom: 25
6466
),
6567
child: TextButton(
6668
style: ButtonStyle(

0 commit comments

Comments
 (0)