From 1a80938908ea21217b669bece80aa07f5c8072e2 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 26 Jul 2021 18:45:54 +0200 Subject: [PATCH] fix: Disable vrouter logs in release mode --- lib/main.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/main.dart b/lib/main.dart index ca989b1b..36c3a3de 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -129,6 +129,7 @@ class _FluffyChatAppState extends State { key: _router, title: '${AppConfig.applicationName}', theme: theme, + logs: kReleaseMode ? VLogs.none : null, darkTheme: darkTheme, localizationsDelegates: L10n.localizationsDelegates, supportedLocales: L10n.supportedLocales,