CupertinoPageScaffold constructor
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);