diff --git a/lib/pages/home_page/home_page_widget.dart b/lib/pages/home_page/home_page_widget.dart index 0a9110b5..c75c038a 100644 --- a/lib/pages/home_page/home_page_widget.dart +++ b/lib/pages/home_page/home_page_widget.dart @@ -202,7 +202,7 @@ class _HomePageWidgetState extends State { Container buildPage(BuildContext context) { return Container( decoration: BoxDecoration( - color: FlutterFlowTheme.of(context).primaryBackground, + color: FlutterFlowTheme.of(context).primary, ), child: SingleChildScrollView( child: Column( @@ -230,14 +230,14 @@ class _HomePageWidgetState extends State { } Widget createBody() { - return SingleChildScrollView( - physics: const AlwaysScrollableScrollPhysics(), - child: Container( - color: FlutterFlowTheme.of(context).primaryBackground, - child: wrapWithModel( - model: _model.menuComponentModel, - updateCallback: () => setState(() {}), - child: const MenuComponentWidget( + return Container( + color: FlutterFlowTheme.of(context).primaryBackground, + child: wrapWithModel( + model: _model.menuComponentModel, + updateCallback: () => setState(() {}), + child: const Padding( + padding: EdgeInsets.only(bottom: 40), + child: MenuComponentWidget( expandable: true, style: MenuView.list_grid, item: MenuItem.button,