Resolved Next Prayer issue (8.3)

appointment_merge
Faiz Hashmi 3 months ago
parent 2288192975
commit ab535f0d7f

@ -106,7 +106,7 @@ class AppConstants {
static String testIP = '12.4.5.1'; // projectID.QlineType.ScreenType.AnyNumber (1 to 10) static String testIP = '12.4.5.1'; // projectID.QlineType.ScreenType.AnyNumber (1 to 10)
static int thresholdForListUI = 3; static int thresholdForListUI = 3;
static double currentBuildVersion = 8.2; static double currentBuildVersion = 8.3;
static double clearLogsHoursThreshold = 48; static double clearLogsHoursThreshold = 48;
} }

@ -324,6 +324,8 @@ class ScreenConfigViewModel extends ChangeNotifier {
} }
lastChecked = now; lastChecked = now;
} }
getNextPrayerToShow();
}); });
} }

@ -202,12 +202,6 @@ class PriorityTicketsWithSidelist extends StatelessWidget {
), ),
) )
]; ];
return (screenOrientationEnum == ScreenOrientationEnum.portraitUp || screenOrientationEnum == ScreenOrientationEnum.portraitDown) return (screenOrientationEnum == ScreenOrientationEnum.portraitUp || screenOrientationEnum == ScreenOrientationEnum.portraitDown) ? Row(children: children) : Column(children: children);
? Row(
children: children,
)
: Column(
children: children,
);
} }
} }

Loading…
Cancel
Save