From 378e3ff1048e118c2944b23f65e314959bf78449 Mon Sep 17 00:00:00 2001 From: Anton Stubenbord Date: Fri, 24 Feb 2023 15:08:46 +0100 Subject: [PATCH] fix: Re-enable high refresh rate --- lib/main.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index f53d7e1..8ac517e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -276,9 +276,9 @@ class _AuthenticationWrapperState extends State { super.initState(); // Temporary Fix: Can be removed if the flutter engine implements the fix itself // Activate the highest supported refresh rate on the device - // if (Platform.isAndroid) { - // _setOptimalDisplayMode(); - // } + if (Platform.isAndroid) { + _setOptimalDisplayMode(); + } initializeDateFormatting(); // For sharing files coming from outside the app while the app is still opened ReceiveSharingIntent.getMediaStream()