PlatformPageScaffold constructor

const PlatformPageScaffold({
  1. Key? key,
  2. Key? widgetKey,
  3. Widget? body,
  4. Color? backgroundColor,
  5. PlatformAppBar? appBar,
  6. Widget? bottomBar,
  7. PlatformNavBar? bottomNavBar,
  8. bool iosContentPadding = false,
  9. bool iosContentPaddingBottom = false,
  10. MaterialScaffoldData material(
    1. BuildContext,
    2. PlatformTarget
    )?,
  11. CupertinoPageScaffoldData cupertino(
    1. BuildContext,
    2. PlatformTarget
    )?,
})

Implementation

const PlatformPageScaffold({
  Key? key,
  this.widgetKey,
  this.body,
  this.backgroundColor,
  this.appBar,
  this.bottomBar,
  this.bottomNavBar,
  this.iosContentPadding = false,
  this.iosContentPaddingBottom = false,
  this.material,
  this.cupertino,
}) : super(key: key);