include add tile t menu
This commit is contained in:
parent
899593dfed
commit
2b5019c53f
1 changed files with 8 additions and 1 deletions
|
|
@ -49,7 +49,14 @@ class _HomeTileGridState extends State<HomeTileGrid> {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (AppEnviroment.getEnv() == "Dev") {
|
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 2", () {}]);
|
||||||
tileList.add([Icons.abc, "Test 3", () {}]);
|
tileList.add([Icons.abc, "Test 3", () {}]);
|
||||||
tileList.add([Icons.abc, "Test 4", () {}]);
|
tileList.add([Icons.abc, "Test 4", () {}]);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue