fresh start

This commit is contained in:
2024-06-18 15:06:57 +02:00
parent 34e8e7ad45
commit a478324698
43 changed files with 227 additions and 102 deletions

View File

@@ -37,7 +37,7 @@ class _HomeState extends State<Home> {
builder: (contexts, snapshot) {
if (snapshot.connectionState == ConnectionState.done) {
return Scaffold(
appBar: MyAppBar(barTitle: "Mzanzi Innovation Hub"),
appBar: const MyAppBar(barTitle: "Mzanzi Innovation Hub"),
drawer: MyAppDrawer(
drawerTitle: useremail,
),
@@ -46,7 +46,7 @@ class _HomeState extends State<Home> {
),
);
} else {
return Center(child: CircularProgressIndicator());
return const Center(child: CircularProgressIndicator());
}
},
);