QudsInteractiveApp constructor

const QudsInteractiveApp({
  1. Key? key,
  2. List<NavigatorObserver> navigatorObservers = const <NavigatorObserver>[],
  3. bool debugShowMaterialGrid = false,
  4. bool showPerformanceOverlay = false,
  5. bool checkerboardRasterCacheImages = false,
  6. bool checkerboardOffscreenLayers = false,
  7. bool showSemanticsDebugger = false,
  8. bool useInheritedMediaQuery = false,
  9. Map<String, Widget Function(BuildContext)> routes = const <String, WidgetBuilder>{},
  10. Widget builder(
    1. BuildContext context
    )?,
  11. String? title,
  12. String generateTitle()?,
  13. Widget customBuilder(
    1. BuildContext,
    2. Widget?
    )?,
  14. ThemeData? customTheme,
  15. bool debugShowCheckedModeBanner = true,
  16. GlobalKey<NavigatorState>? navigatorKey,
  17. GlobalKey<ScaffoldMessengerState>? scaffoldMessengerKey,
  18. String? initialRoute,
  19. Route? onGenerateRoute(
    1. RouteSettings
    )?,
  20. List<Route> onGenerateInitialRoutes(
    1. String
    )?,
  21. Route? onUnknownRoute(
    1. RouteSettings
    )?,
  22. String onGenerateTitle(
    1. BuildContext
    )?,
  23. Iterable<LocalizationsDelegate>? localizationsDelegates,
  24. Map<ShortcutActivator, Intent>? shortcuts,
  25. Map<Type, Action<Intent>>? actions,
  26. String? restorationScopeId,
  27. ScrollBehavior? scrollBehavior,
})

Create an instance of QudsInteractiveApp

Implementation

const QudsInteractiveApp(
    {Key? key,
    this.navigatorObservers = const <NavigatorObserver>[],
    this.debugShowMaterialGrid = false,
    this.showPerformanceOverlay = false,
    this.checkerboardRasterCacheImages = false,
    this.checkerboardOffscreenLayers = false,
    this.showSemanticsDebugger = false,
    this.useInheritedMediaQuery = false,
    this.routes = const <String, WidgetBuilder>{},
    this.builder,
    this.title,
    this.generateTitle,
    this.customBuilder,
    this.customTheme,
    this.debugShowCheckedModeBanner = true,
    this.navigatorKey,
    this.scaffoldMessengerKey,
    this.initialRoute,
    this.onGenerateRoute,
    this.onGenerateInitialRoutes,
    this.onUnknownRoute,
    this.onGenerateTitle,
    this.localizationsDelegates,
    this.shortcuts,
    this.actions,
    this.restorationScopeId,
    this.scrollBehavior})
    : super(key: key);