在Flutter中,如果你想禁用侧滑返回功能,你可以使用WillPopScope小部件,并在onWillPop回调中返回false来阻止用户通过侧滑返回到上一个页面。
dart
class DisableSwipePop extends StatelessWidget {
@override
Widget build(BuildContext context) {
return WillPopScope(
onWillPop: () async => false,
child: Scaffold(
appBar: AppBar(
title: Text('禁用侧滑返回'),
),
body: Center(
child: Text('点击按钮返回'),
),
),
);
}
}
但是 WillPopScope方法已经过时,现在PopScope 代替具体使用方法
dart
class DisableSwipePop extends StatelessWidget {
@override
Widget build(BuildContext context) {
return PopScope(
canPop: false,
child: Scaffold(
appBar: AppBar(
title: Text('禁用侧滑返回'),
),
body: Center(
child: Text('点击按钮返回'),
),
),
);
}
}