Disable debug banner

This commit is contained in:
Moe Poi ~ 2021-08-24 22:18:09 +07:00
parent 96154c492a
commit 0639f243dd

View file

@ -16,7 +16,8 @@ class MyApp extends StatelessWidget {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return const MaterialApp( return const MaterialApp(
home: SplashScreen() home: SplashScreen(),
debugShowCheckedModeBanner: false,
); );
} }
} }