FpjWidgetApp constructor

const FpjWidgetApp({
  1. Widget? home,
  2. VoidCallback? onInit,
  3. VoidCallback? onReady,
  4. VoidCallback? onDispose,
  5. Iterable<Locale>? supportedLocales,
  6. Size? size,
  7. String? initialRoute,
  8. List<GetPage>? getPages,
  9. String title = "",
  10. Color? scaffoldBackgroundColor,
  11. AppBarTheme? appBarTheme,
  12. List<NavigatorObserver>? navigatorObservers,
  13. ValueChanged<Routing?>? routingCallback,
  14. Map<String, Widget Function(BuildContext)> routes = const <String, WidgetBuilder>{},
  15. Key? key,
})

Implementation

const FpjWidgetApp({
  this.home,
  this.onInit,
  this.onReady,
  this.onDispose,
  this.supportedLocales,
  this.size,
  this.initialRoute,
  this.getPages,
  this.title = "",
  this.scaffoldBackgroundColor,
  this.appBarTheme,
  this.navigatorObservers,
  this.routingCallback,
  this.routes = const <String, WidgetBuilder>{},
  super.key,
});