From e590c3c132e619f3756eb47b7128f02d84cd375d Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 23 Jan 2019 15:09:57 +0100 Subject: [PATCH] Do not show the 'debug' banner It's annoying, and does not allow us to easily take screenshots. Specially since the apps built in release mode cannot be run in an x86 android emulator. --- lib/app.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/app.dart b/lib/app.dart index c3e864c0..b68997c7 100644 --- a/lib/app.dart +++ b/lib/app.dart @@ -44,6 +44,7 @@ class JournalApp extends StatelessWidget { '/settings': (context) => SettingsScreen(), '/setupRemoteGit': (context) => OnBoardingScreen(onCompleted), }, + debugShowCheckedModeBanner: false, ); } }