使用WillPopScope
组件即可,使用示例如下:
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.white,
title: Text('title'),
),
body: WillPopScope(
child: Text('禁止侧滑返回'),
onWillPop: () async{
return false;
})
);
网友评论