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

@@ -17,13 +17,13 @@ class _MyAppDrawerState extends State<MyAppDrawer> {
padding: EdgeInsets.zero,
children: [
DrawerHeader(
child: Text(widget.drawerTitle as String),
decoration: const BoxDecoration(
color: Colors.blueAccent,
),
child: Text(widget.drawerTitle),
),
ListTile(
title: Text("Home"),
title: const Text("Home"),
onTap: () {
Navigator.of(context).pushNamed('/home');
},