Skip to content

Commit f4869fe

Browse files
committed
feat: set ProviderScope const
1 parent 429e8dc commit f4869fe

File tree

1 file changed

+1
-1
lines changed
  • bricks/flutter_clean_base/__brick__/{{project_name.snakeCase()}}/lib

1 file changed

+1
-1
lines changed

bricks/flutter_clean_base/__brick__/{{project_name.snakeCase()}}/lib/main.gen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Future<void> main{{#flavorizr}}App{{/flavorizr}}() async {
3030
final isAllowedToUseApp = await environmentService().initialize();
3131
if (isAllowedToUseApp) {
3232
{{#isRiverpod}}
33-
runApp(ProviderScope(child: const App()));
33+
runApp(const ProviderScope(child: App()));
3434
{{/isRiverpod}}
3535
{{^isRiverpod}}
3636
runApp(const App());

0 commit comments

Comments
 (0)