diff --git a/Frontend/patient_manager/lib/components/homeTileGrid.dart b/Frontend/patient_manager/lib/components/homeTileGrid.dart index 9c2ea568..0e6ea48d 100644 --- a/Frontend/patient_manager/lib/components/homeTileGrid.dart +++ b/Frontend/patient_manager/lib/components/homeTileGrid.dart @@ -49,7 +49,14 @@ class _HomeTileGridState extends State { } if (AppEnviroment.getEnv() == "Dev") { - tileList.add([Icons.abc, "Test 1", () {}]); + tileList.add([ + Icons.add, + "Add Test", + () { + Navigator.of(context).pushNamed('/patient-manager/add', + arguments: widget.signedInUser); + } + ]); tileList.add([Icons.abc, "Test 2", () {}]); tileList.add([Icons.abc, "Test 3", () {}]); tileList.add([Icons.abc, "Test 4", () {}]);