From ad19ea54d1289d355d300dc036e8c26a7863a343 Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Mon, 30 Dec 2024 23:48:03 +0100 Subject: [PATCH] add account update --- covas_mobile/lib/classes/MyDrawer.dart | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/covas_mobile/lib/classes/MyDrawer.dart b/covas_mobile/lib/classes/MyDrawer.dart index 2d95736..13e2925 100644 --- a/covas_mobile/lib/classes/MyDrawer.dart +++ b/covas_mobile/lib/classes/MyDrawer.dart @@ -104,6 +104,13 @@ class MyDrawer extends StatelessWidget with ShowAlertDialog { Navigator.pop(context); // Close the drawer }, ), + ListTile( + leading: Icon(Icons.account_circle), + title: Text('Update profile'), + onTap: () { + Navigator.pop(context); // Close the drawer + }, + ), ListTile( leading: Icon(Icons.info), title: Text('About'),