diff --git a/lib/pages/home/home_page.dart b/lib/pages/home/home_page.dart index 2277707..4b040a8 100644 --- a/lib/pages/home/home_page.dart +++ b/lib/pages/home/home_page.dart @@ -18,6 +18,17 @@ class HomePage extends StatelessWidget { child: WebAppBar(), preferredSize: Size(double.infinity, 80)), drawer: constraints.maxWidth < mobileBreakpoint ? Drawer() : null, + body: Align( + alignment: Alignment.topCenter, + child: ConstrainedBox( + constraints: BoxConstraints( + maxWidth: 1200, + ), + child: ListView( + + ), + ), + ), ); }, );