diff --git a/Frontend/patient_manager/lib/mih_packages/mih_home/home_tile_grid.dart b/Frontend/patient_manager/lib/mih_packages/mih_home/home_tile_grid.dart index 28c3a543..7e0c7b81 100644 --- a/Frontend/patient_manager/lib/mih_packages/mih_home/home_tile_grid.dart +++ b/Frontend/patient_manager/lib/mih_packages/mih_home/home_tile_grid.dart @@ -366,9 +366,15 @@ class _HomeTileGridState extends State { // return const MIHErrorMessage(errorType: "Password Match"); // return const MIHErrorMessage(errorType: "Invalid Credentials"); return MIHWindow( - windowTitle: "Test Window", - windowItems: const [SizedBox()], - actionItems: [ + fullscreen: false, + windowTitle: + "Test Window title that is too large for mobile devices", + windowBody: const [ + SizedBox( + height: 250, + ) + ], + windowTools: [ IconButton( onPressed: () { //deleteFilePopUp(filePath, fileID); @@ -394,7 +400,7 @@ class _HomeTileGridState extends State { ), ), ], - onTapClose: () { + onWindowTapClose: () { Navigator.pop(context); }, );