From eaa7d03bb426cd42d0a62a0e2ffa329ddfc55d3d Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Mon, 4 Jan 2021 16:59:13 +0530 Subject: [PATCH] fix: added back system theme --- example/lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/lib/main.dart b/example/lib/main.dart index b7c30dce..74a6d808 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -63,7 +63,7 @@ class MyApp extends StatelessWidget { debugShowCheckedModeBanner: false, theme: ThemeData.light(), darkTheme: ThemeData.dark(), - themeMode: ThemeMode.dark, + themeMode: ThemeMode.system, onGenerateRoute: AppRoutes.generateRoute, initialRoute: client.state.user == null ? Routes.CHOOSE_USER : Routes.HOME,