Skip to content

Commit 0b0f5da

Browse files
committed
🐛 Fix expanded issue in custom page
1 parent c1a42f0 commit 0b0f5da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

example/lib/customs/custom_picker_page.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ class _CustomPickerPageState extends State<CustomPickersPage>
4949
Widget build(BuildContext context) {
5050
super.build(context);
5151
return Column(
52-
children: <Widget>[tips, _MethodListView(pickMethods: pickMethods)],
52+
children: <Widget>[
53+
tips,
54+
Expanded(child: _MethodListView(pickMethods: pickMethods)),
55+
],
5356
);
5457
}
5558
}

0 commit comments

Comments
 (0)