CupertinoPageScaffoldModifier constructor

const CupertinoPageScaffoldModifier({
  1. Key? key,
  2. Key? modifierKey,
  3. Widget? child,
  4. ObstructingPreferredSizeWidget? navigationBar,
  5. Color? backgroundColor,
  6. bool resizeToAvoidBottomInset = true,
})

Creates a layout for pages with a navigation bar at the top.

Implementation

const CupertinoPageScaffoldModifier({
  super.key,
  super.modifierKey,
  super.child,
  this.navigationBar,
  this.backgroundColor,
  this.resizeToAvoidBottomInset = true,
});