Flutter 禁止侧滑返回
2020-06-30 本文已影响0人
我是数据链路层
使用 WillPopScope 控件
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.white,
title: Text('title'),
),
body: WillPopScope(
child: Text('禁止侧滑返回'),
onWillPop: () async{
return false;
})
);