fix: bottom padding home page

This commit is contained in:
Daniel Yukio 2024-08-28 17:59:45 -03:00
parent a7af306b31
commit 9f2dc1701d
1 changed files with 9 additions and 9 deletions

View File

@ -202,7 +202,7 @@ class _HomePageWidgetState extends State<HomePageWidget> {
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<HomePageWidget> {
}
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,