答案是
WillPopScope。这将防止系统d出页面。您仍然可以使用
Navigator.of(context).pop()
@overrideWidget build(BuildContext context) { return new WillPopScope( onWillPop: () async => false, child: new Scaffold( appBar: new AppBar( title: new Text("data"), leading: new IconButton( icon: new Icon(Icons.ac_unit), onPressed: () => Navigator.of(context).pop(), ), ), ), );}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)