From 991e20792496458aee24f27cea9937cd5a279036 Mon Sep 17 00:00:00 2001 From: yaso-meth Date: Thu, 5 Sep 2024 11:02:22 +0200 Subject: [PATCH] increase mobile screen size to max of <=500 --- Frontend/patient_manager/lib/theme/mihTheme.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Frontend/patient_manager/lib/theme/mihTheme.dart b/Frontend/patient_manager/lib/theme/mihTheme.dart index 96c189a4..01802798 100644 --- a/Frontend/patient_manager/lib/theme/mihTheme.dart +++ b/Frontend/patient_manager/lib/theme/mihTheme.dart @@ -185,7 +185,7 @@ class MyTheme { } void setScreenType(double width) { - if (width <= 420) { + if (width <= 500) { screenType = "mobile"; } else { screenType = "desktop";