From ad99c78a21994b1131e852eb7fa0a7c04b6c42dc Mon Sep 17 00:00:00 2001 From: yaso-meth Date: Thu, 15 Aug 2024 13:55:31 +0200 Subject: [PATCH] Add access review tile to personal home --- .../lib/components/homeTileGrid.dart | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Frontend/patient_manager/lib/components/homeTileGrid.dart b/Frontend/patient_manager/lib/components/homeTileGrid.dart index 40e63a6b..566ddec0 100644 --- a/Frontend/patient_manager/lib/components/homeTileGrid.dart +++ b/Frontend/patient_manager/lib/components/homeTileGrid.dart @@ -115,6 +115,20 @@ class _HomeTileGridState extends State { } ], ); + tileList.add( + [ + Icons.check_box_outlined, + "Access Review", + () { + Navigator.of(context).pushNamed( + '/patient-access-review', + arguments: widget.signedInUser, + ); + // Navigator.popAndPushNamed(context, '/patient-manager', + // arguments: widget.userEmail); + } + ], + ); } void setAppsBusiness(List> tileList) {