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(
      )?,
    1. Widget customBuilder(
      1. BuildContext,
      2. Widget?
      )?,
    2. ThemeData? customTheme,
    3. bool debugShowCheckedModeBanner = true,
    4. GlobalKey<NavigatorState>? navigatorKey,
    5. GlobalKey<ScaffoldMessengerState>? scaffoldMessengerKey,
    6. String? initialRoute,
    7. Route? onGenerateRoute(
      1. RouteSettings
      )?,
    8. List<Route> onGenerateInitialRoutes(
      1. String
      )?,
    9. Route? onUnknownRoute(
      1. RouteSettings
      )?,
    10. String onGenerateTitle(
      1. BuildContext
      )?,
    11. Iterable<LocalizationsDelegate>? localizationsDelegates,
    12. Map<ShortcutActivator, Intent>? shortcuts,
    13. Map<Type, Action<Intent>>? actions,
    14. String? restorationScopeId,
    15. 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);