From 6d2fac31cdb182274e418bd0bdd61afe472cf6ac Mon Sep 17 00:00:00 2001 From: jantunesmesias Date: Tue, 27 Aug 2024 14:24:16 -0300 Subject: [PATCH] WIP --- lib/pages/home_page/home_page_widget.dart | 29 ++++++++++------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/lib/pages/home_page/home_page_widget.dart b/lib/pages/home_page/home_page_widget.dart index f34d7236..81665ba7 100644 --- a/lib/pages/home_page/home_page_widget.dart +++ b/lib/pages/home_page/home_page_widget.dart @@ -140,7 +140,7 @@ class _HomePageWidgetState extends State { Widget createHeader(BuildContext context) { return Container( width: MediaQuery.of(context).size.width, - height: MediaQuery.of(context).size.height * 0.1, + height: MediaQuery.of(context).size.height * 0.13, decoration: const BoxDecoration( color: Color(0xFF1AAB5F), ), @@ -148,22 +148,19 @@ class _HomePageWidgetState extends State { child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Padding( - padding: const EdgeInsets.all(10.0), - child: FlutterFlowIconButton( - borderRadius: 20.0, - borderWidth: 1.0, - buttonSize: 40.0, - fillColor: FlutterFlowTheme.of(context).primary, - icon: const Icon( - Icons.menu_rounded, - color: Colors.white, - size: 28.0, - ), - onPressed: () async { - scaffoldKey.currentState!.openDrawer(); - }, + FlutterFlowIconButton( + borderRadius: 20.0, + borderWidth: 1.0, + buttonSize: 40.0, + fillColor: FlutterFlowTheme.of(context).primary, + icon: const Icon( + Icons.menu_rounded, + color: Colors.white, + size: 28.0, ), + onPressed: () async { + scaffoldKey.currentState!.openDrawer(); + }, ), Row( mainAxisAlignment: MainAxisAlignment.center,