Browse Source

style: disable debug banner in MaterialApp

Develop_Gopal
Ali Gopal Pour 1 month ago
parent
commit
d414ba98ee
  1. 1
      lib/main.dart

1
lib/main.dart

@ -39,6 +39,7 @@ class MainApp extends StatelessWidget {
create: (context) => locator<AppBloc>()..add(InitLocaleEvent()),
child: BlocBuilder<AppBloc, AppState>(
builder: (context, state) => MaterialApp.router(
debugShowCheckedModeBanner: false,
theme: MyTheme.light,
darkTheme: MyTheme.dark,
themeMode: ThemeService.getTheme(),

Loading…
Cancel
Save