ProKitApp constructor

const ProKitApp({
  1. Key? key,
  2. required Widget home,
  3. String? title,
  4. ThemeData? theme,
  5. ThemeData? darkTheme,
  6. bool useInternetOverlay = false,
  7. ProKitThemeModel? customLightTheme,
  8. ProKitThemeModel? customDarkTheme,
  9. ThemeMode initialThemeMode = ThemeMode.system,
})

Creates a configurable base widget for ProKit applications.

Implementation

const ProKitApp({
  super.key,
  required this.home,
  this.title,
  this.theme,
  this.darkTheme,
  this.useInternetOverlay = false,
  this.customLightTheme,
  this.customDarkTheme,
  this.initialThemeMode = ThemeMode.system,
});