Update app top cater for env variables

This commit is contained in:
2024-07-11 15:58:55 +02:00
parent 1c7db86571
commit 4923f0f426
15 changed files with 42 additions and 50 deletions

View File

@@ -89,20 +89,5 @@ class _HomeState extends State<Home> {
}
},
);
// Scaffold(
// appBar: MyAppBar(barTitle: "Mzanzi Innovation Hub"),
// body: HomeTileGrid(),
// drawer: FutureBuilder(
// future: getUserEmail(),
// builder: (contexts, snapshot) {
// if (snapshot.connectionState == ConnectionState.done) {
// return MyAppDrawer(drawerTitle: useremail);
// } else {
// return Center(child: CircularProgressIndicator());
// }
// },
// ),
// );
}
}