Skip to content

Commit

Permalink
Merge pull request #598 from Gaurav-Kushwaha-1225/SmallScreenOverflow
Browse files Browse the repository at this point in the history
Bottom Overflow in Repeat Tile UI on Small Screen Devices
  • Loading branch information
AryanSarafDev authored Oct 14, 2024
2 parents c7c8ce7 + 1a3fa08 commit 8e7c393
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/app/modules/addOrUpdateAlarm/views/repeat_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ class RepeatTile extends StatelessWidget {
},
backgroundColor: themeController.secondaryBackgroundColor.value,
builder: (BuildContext context) {
return Container(
height: height * 0.45,
return SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
buildDailyTile(),
Container(
Expand Down Expand Up @@ -61,6 +62,7 @@ class RepeatTile extends StatelessWidget {
padding: const EdgeInsets.only(
left: 25,
right: 25,
bottom: 25
),
child: TextButton(
style: ButtonStyle(
Expand Down

0 comments on commit 8e7c393

Please sign in to comment.