ProKitApp constructor
const
ProKitApp({
- Key? key,
- required Widget home,
- String? title,
- ThemeData? theme,
- ThemeData? darkTheme,
- bool useInternetOverlay = false,
- ProKitThemeModel? customLightTheme,
- ProKitThemeModel? customDarkTheme,
- 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,
});