一个iOS风格的页面的基本布局结构。包含内容和导航栏
CupertinoPageScaffold({
Key key,
this.navigationBar,
this.backgroundColor,
this.resizeToAvoidBottomInset = true,
@required this.child,
})
navigationBar: CupertinoNavigationBar(),
backgroundColor: Color(0xFFfafcff),
child: Center(),