enable API call from patient manager

This commit is contained in:
2024-04-07 12:12:01 +02:00
parent 3baf507414
commit 790766fc99
5 changed files with 182 additions and 18 deletions

View File

@@ -22,6 +22,12 @@ class _MyAppDrawerState extends State<MyAppDrawer> {
color: Colors.blueAccent,
),
),
ListTile(
title: Text("Home"),
onTap: () {
Navigator.of(context).pushNamed('/home');
},
)
],
),
);