From 40e2e75a09d52ccdd422476b6a56a12b7717a474 Mon Sep 17 00:00:00 2001 From: "J. A. Messias" Date: Mon, 18 Nov 2024 17:20:15 -0300 Subject: [PATCH] WIP --- lib/flutter_flow/flutter_flow_theme.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flutter_flow/flutter_flow_theme.dart b/lib/flutter_flow/flutter_flow_theme.dart index fa892eb1..d6607aea 100644 --- a/lib/flutter_flow/flutter_flow_theme.dart +++ b/lib/flutter_flow/flutter_flow_theme.dart @@ -41,7 +41,7 @@ abstract class FlutterFlowTheme { static void saveThemeMode(ThemeMode mode) => mode == ThemeMode.system ? _prefs?.remove(kThemeModeKey) : _prefs?.setBool(kThemeModeKey, mode == ThemeMode.dark); static FlutterFlowTheme of(BuildContext context) { - deviceSize = getDeviceSize(context); + // deviceSize = getDeviceSize(context); return Theme.of(context).brightness == Brightness.dark ? DarkModeTheme() : LightModeTheme(); }