flutter

Flutter 禁用侧滑返回

2023-03-27  本文已影响0人  __Mr_Xie__

使用WillPopScope组件即可,使用示例如下:

return Scaffold(
       appBar: AppBar(
        backgroundColor: Colors.white,
         title: Text('title'),
       ),
       body: WillPopScope(
         child: Text('禁止侧滑返回'),
          onWillPop: () async{
            return false;
       })
    );
上一篇 下一篇

猜你喜欢

热点阅读