From a82ca55c585773461e1bd3056fca1261aa11dc36 Mon Sep 17 00:00:00 2001 From: Juan Felipe Duarte <70235683+DuarteJFelipe@users.noreply.github.com> Date: Fri, 31 Mar 2023 09:06:27 -0500 Subject: [PATCH] maquetacion terminada menu --- lib/src/screens/welcome.dart | 43 +++++++++++++++++++++++++++++++----- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/lib/src/screens/welcome.dart b/lib/src/screens/welcome.dart index ca6c749..55e1322 100644 --- a/lib/src/screens/welcome.dart +++ b/lib/src/screens/welcome.dart @@ -135,7 +135,9 @@ class _WelcomeScreenState extends State { ), ), Align( - child: Container( + alignment: Alignment.bottomRight, + child: Padding( + padding: const EdgeInsets.only(top: 120), child: Row( children: [ SizedBox(width: 10), @@ -200,10 +202,41 @@ class _WelcomeScreenState extends State { ), Container( margin: const EdgeInsets.only(top: 20, left: 30), - child: const Image( - image: AssetImage('images/logo_prosapp.png'), - width: 180, - height: 100, + child: Align( + alignment: Alignment.topCenter, + child: Row( + children: [ + Builder( + builder: (context) => ElevatedButton( + style: ElevatedButton.styleFrom( + primary: Colors.white, + shape: CircleBorder(), + elevation: 3, + minimumSize: Size(50, 50), + ), + child: Icon( + Icons.menu, + color: Colors.black, + size: 30, + ), + onPressed: () { + Scaffold.of(context).openDrawer(); + }, + ), + ), + SizedBox( + width: 150, + ), + Padding( + padding: const EdgeInsets.only(top: 50), + child: const Image( + image: AssetImage('images/logo_prosapp.png'), + width: 120, + height: 50, + ), + ), + ], + ), ), ), Container(