Skip to content

Commit d4e37e2

Browse files
committed
change size
1 parent 2c3d557 commit d4e37e2

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

lib/components/my_page_view.dart

+7-3
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,16 @@ class MyPageView extends StatelessWidget {
4343
drawer: isMobile ? myDrawer() : null,
4444
body: Center(
4545
child: Column(
46+
mainAxisSize: MainAxisSize.min,
4647
children: [
4748
Expanded(
4849
child: SingleChildScrollView(
49-
child: Column(
50-
crossAxisAlignment: align,
51-
children: childrens,
50+
child: SizedBox(
51+
width: 1024,
52+
child: Column(
53+
crossAxisAlignment: align,
54+
children: childrens,
55+
),
5256
),
5357
))
5458
],

0 commit comments

Comments
 (0)