Skip to content

Commit 1f0efbf

Browse files
fix: 6565 - put back the fix about long bottom sheets (#6618)
1 parent 334a5f8 commit 1f0efbf

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

packages/smooth_app/lib/generic_lib/bottom_sheets/smooth_bottom_sheet.dart

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -358,12 +358,14 @@ class SmoothModalSheet extends StatelessWidget {
358358
decoration: const BoxDecoration(
359359
borderRadius: BorderRadius.vertical(top: ROUNDED_RADIUS),
360360
),
361-
child: Column(
362-
mainAxisSize: MainAxisSize.min,
363-
children: <Widget>[
364-
header,
365-
bodyChild,
366-
],
361+
child: SingleChildScrollView(
362+
child: Column(
363+
mainAxisSize: MainAxisSize.min,
364+
children: <Widget>[
365+
header,
366+
bodyChild,
367+
],
368+
),
367369
),
368370
),
369371
);

0 commit comments

Comments
 (0)