Flutter 禁止侧滑返回

使用 WillPopScope 控件

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

你可能感兴趣的:(Flutter 禁止侧滑返回)