Flutter Android 阻止全面屏返回手势
前言
为了防止用户不小心滑到屏幕退出APP,我们可以阻止返回消息。
代码实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| @override Widget build(BuildContext context) { return MaterialApp( home: WillPopScope( onWillPop: () async { return false; }, child: Scaffold( appBar: AppBar(title: const Text('标题')), body: MyHomePage(); ), ), ); }
|