We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334a5f8 commit 1f0efbfCopy full SHA for 1f0efbf
packages/smooth_app/lib/generic_lib/bottom_sheets/smooth_bottom_sheet.dart
@@ -358,12 +358,14 @@ class SmoothModalSheet extends StatelessWidget {
358
decoration: const BoxDecoration(
359
borderRadius: BorderRadius.vertical(top: ROUNDED_RADIUS),
360
),
361
- child: Column(
362
- mainAxisSize: MainAxisSize.min,
363
- children: <Widget>[
364
- header,
365
- bodyChild,
366
- ],
+ child: SingleChildScrollView(
+ child: Column(
+ mainAxisSize: MainAxisSize.min,
+ children: <Widget>[
+ header,
+ bodyChild,
367
+ ],
368
+ ),
369
370
371
);
0 commit comments