FlowsMaterialApp constructor

const FlowsMaterialApp({
  1. Key? key,
  2. Widget? home,
  3. String? initialRoute,
  4. List<FlowsPage>? pages,
  5. ThemeData? theme,
  6. ThemeData? darkTheme,
  7. ThemeMode? themeMode,
  8. bool debugShowCheckedModeBanner = true,
  9. Map<String, Widget Function(BuildContext)>? routes,
  10. Widget unknownRoute(
    1. BuildContext
    )?,
  11. List<NavigatorObserver>? navigatorObservers,
  12. Widget builder(
    1. BuildContext,
    2. Widget?
    )?,
  13. String? title,
})

Implementation

const FlowsMaterialApp({
  super.key,
  this.home,
  this.initialRoute,
  this.pages,
  this.theme,
  this.darkTheme,
  this.themeMode,
  this.debugShowCheckedModeBanner = true,
  this.routes,
  this.unknownRoute,
  this.navigatorObservers,
  this.builder,
  this.title,
});