WearOsApp constructor
WearOsApp({
- Key? key,
- required dynamic screenBuilder(
- BuildContext context
- Widget? splashIconWidget,
- String? splashIcon,
- Color splashBackgroundColor = Colors.black,
- dynamic onStarted(
- BuildContext context
- Duration splashDuration = const Duration(seconds: 1),
- ThemeData? theme,
Implementation
WearOsApp(
{super.key,
required this.screenBuilder,
this.splashIconWidget,
this.splashIcon,
this.splashBackgroundColor = Colors.black,
this.onStarted,
this.splashDuration = const Duration(seconds: 1),
this.theme}) {
}