在Flutter中,如果你想禁用侧滑返回功能,你可以使用WillPopScope小部件,并在onWillPop回调中返回false来阻止用户通过侧滑返回到上一个页面。
class DisableSwipePop extends StatelessWidget {
Widget build(BuildContext context) {
return WillPopScope(
onWillPop: () async => false,
child: Scaffold(
appBar: AppBar(
title: Text('禁用侧滑返回'),
),
body: Center(
child: Text('点击按钮返回'),
),
),
);
}
}
但是 WillPopScope方法已经过时,现在PopScope 代替具体使用方法
class DisableSwipePop extends StatelessWidget {
Widget build(BuildContext context) {
return PopScope(
canPop: false,
child: Scaffold(
appBar: AppBar(
title: Text('禁用侧滑返回'),
),
body: Center(
child: Text('点击按钮返回'),
),
),
);
}
}
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » 在Flutter中,禁止侧滑的方法
发表评论 取消回复