BloomApp constructor

const BloomApp({
  1. Key? key,
  2. String? title,
  3. RouterConfig<Object>? routerConfig,
  4. List<RouteBase>? routes,
  5. String initialLocation = '/',
  6. BloomTheme? theme,
  7. BloomTheme? darkTheme,
  8. BloomThemeMode themeMode = ui.BloomThemeMode.system,
  9. Locale? locale,
  10. Iterable<LocalizationsDelegate>? localizationsDelegates,
  11. Iterable<Locale>? supportedLocales,
  12. bool debugShowCheckedModeBanner = false,
  13. Widget? home,
})

Creates a BloomApp root widget.

Implementation

const BloomApp({
  super.key,
  this.title,
  this.routerConfig,
  this.routes,
  this.initialLocation = '/',
  this.theme,
  this.darkTheme,
  this.themeMode = ui.BloomThemeMode.system,
  this.locale,
  this.localizationsDelegates,
  this.supportedLocales,
  this.debugShowCheckedModeBanner = false,
  this.home,
});