CupertinoPageScaffold constructor

const CupertinoPageScaffold({Key key, ObstructingPreferredSizeWidget navigationBar, Color backgroundColor: CupertinoColors.white, bool resizeToAvoidBottomInset: true, @required Widget child })

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

Implementation

const CupertinoPageScaffold({
  Key key,
  this.navigationBar,
  this.backgroundColor = CupertinoColors.white,
  this.resizeToAvoidBottomInset = true,
  @required this.child,
}) : assert(child != null),
     assert(resizeToAvoidBottomInset != null),
     super(key: key);