使用系统提供的脚手架Scaffold,需要自定义返回按钮,代码:
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
elevation: 0, //导航栏和内容之间没有阴影
leading: GestureDetector(
onTap: (){
Navigator.of(context).pop();
},
child: Image.asset("images/navigator_back.png"),
),
title: Text("我的订单"),
centerTitle: true,
),
body: Text("Sample body"),
);
}