CupertinoPageScaffoldData constructor

CupertinoPageScaffoldData({
  1. Color? backgroundColor,
  2. Widget? body,
  3. Key? widgetKey,
  4. ObstructingPreferredSizeWidget? navigationBar,
  5. CupertinoTabBar? bottomTabBar,
  6. bool? resizeToAvoidBottomInset,
  7. bool? resizeToAvoidBottomInsetTab,
  8. Color? backgroundColorTab,
  9. String? restorationIdTab,
  10. CupertinoTabController? controller,
})

Implementation

CupertinoPageScaffoldData({
  super.backgroundColor,
  super.body,
  super.widgetKey,
  this.navigationBar,
  this.bottomTabBar,
  this.resizeToAvoidBottomInset,
  this.resizeToAvoidBottomInsetTab,
  this.backgroundColorTab,
  this.restorationIdTab,
  this.controller,
});