PlatformScaffold constructor

PlatformScaffold({
  1. Key? key,
  2. Key? widgetKey,
  3. Widget? body,
  4. Color? backgroundColor,
  5. PlatformAppBar? appBar,
  6. PlatformNavBar? bottomNavBar,
  7. bool iosContentPadding = false,
  8. bool iosContentBottomPadding = false,
  9. PlatformBuilder<MaterialScaffoldData>? material,
  10. PlatformBuilder<CupertinoPageScaffoldData>? cupertino,
  11. IndexedWidgetBuilder? cupertinoTabChildBuilder,
})

Implementation

PlatformScaffold({
  super.key,
  this.widgetKey,
  this.body,
  this.backgroundColor,
  this.appBar,
  this.bottomNavBar,
  this.iosContentPadding = false,
  this.iosContentBottomPadding = false,
  this.material,
  this.cupertino,
  this.cupertinoTabChildBuilder,
});