ModulaApp constructor

const ModulaApp({
  1. required Widget home,
  2. Key? key,
  3. ModulaThemeData? theme,
  4. String? title,
  5. ThemeMode themeMode = ThemeMode.system,
  6. bool debugShowCheckedModeBanner = false,
  7. GlobalKey<NavigatorState>? navigatorKey,
  8. Map<String, WidgetBuilder>? routes,
})

Implementation

const ModulaApp({
  required this.home,
  super.key,
  this.theme,
  this.title,
  this.themeMode = ThemeMode.system,
  this.debugShowCheckedModeBanner = false,
  this.navigatorKey,
  this.routes,
});