您好,登錄后才能下訂單哦!
這篇文章主要講解了Flutter中使用WillPopScope的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
在Flutter中如何實(shí)現(xiàn)點(diǎn)擊2次Back按鈕退出App,如何實(shí)現(xiàn)App中多個(gè)Route(路由),如何實(shí)現(xiàn)Back按鈕只退出指定頁(yè)面,此篇文章將告訴你。
WillPopScope
WillPopScope用于處理是否離開當(dāng)前頁(yè)面,在Flutter中有多種方式可以離開當(dāng)前頁(yè)面,比如AppBar、CupertinoNavigationBar上面的返回按鈕,點(diǎn)擊將會(huì)回到前一個(gè)頁(yè)面,在Android手機(jī)上點(diǎn)擊實(shí)體(虛擬)返回按鈕,也將會(huì)回到前一個(gè)頁(yè)面,此功能對(duì)于iOS程序員來(lái)說(shuō)可能特別容易忽略。
以下幾種情況我們會(huì)用到WillPopScope:
詢問(wèn)用戶是否退出
在Android App中最開始的頁(yè)面點(diǎn)擊后退按鈕,默認(rèn)會(huì)關(guān)閉當(dāng)前activity并回到桌面,我們希望此時(shí)彈出對(duì)話框或者給出提示“再次點(diǎn)擊退出”,避免用戶的誤操作。
WillPopScope( onWillPop: () async => showDialog( context: context, builder: (context) => AlertDialog(title: Text('你確定要退出嗎?'), actions: <Widget>[ RaisedButton( child: Text('退出'), onPressed: () => Navigator.of(context).pop(true)), RaisedButton( child: Text('取消'), onPressed: () => Navigator.of(context).pop(false)), ])), child: Container( alignment: Alignment.center, child: Text('點(diǎn)擊后退按鈕,詢問(wèn)是否退出。'), ))
我們也可以把效果做成快速點(diǎn)擊2次退出:
DateTime _lastQuitTime; WillPopScope( onWillPop: () async { if (_lastQuitTime == null || DateTime.now().difference(_lastQuitTime).inSeconds > 1) { print('再按一次 Back 按鈕退出'); Scaffold.of(context) .showSnackBar(SnackBar(content: Text('再按一次 Back 按鈕退出'))); _lastQuitTime = DateTime.now(); return false; } else { print('退出'); Navigator.of(context).pop(true); return true; } }, child: Container( alignment: Alignment.center, child: Text('點(diǎn)擊后退按鈕,詢問(wèn)是否退出。'), ))
App中有多個(gè)Navigator
我們的App通常是在MaterialApp和CupertinoApp下,MaterialApp和CupertinoApp本身有一個(gè)Navigator,所以默認(rèn)情況下調(diào)用Navigator.pop或者Navigator.push就是在操作此Navigator。不過(guò)在一些情況下,我們希望有自己定義的Navigator,比如如下場(chǎng)景:
首頁(yè):
class MyHomePage extends StatefulWidget { MyHomePage({Key key, this.title}) : super(key: key); final String title; @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { GlobalKey<NavigatorState> _key = GlobalKey(); @override Widget build(BuildContext context) { return Scaffold( body: WillPopScope( onWillPop: () async { if (_key.currentState.canPop()) { _key.currentState.pop(); return false; } return true; }, child: Column( children: <Widget>[ Expanded( child: Navigator( key: _key, onGenerateRoute: (RouteSettings settings) => MaterialPageRoute(builder: (context) { return OnePage(); }), ), ), Container( height: 50, color: Colors.blue, alignment: Alignment.center, child: Text('底部Bar'), ) ], )), ); } }
第一個(gè)頁(yè)面:
class OnePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container( child: RaisedButton( child: Text('去下一個(gè)頁(yè)面'), onPressed: () { Navigator.push(context, MaterialPageRoute(builder: (context) { return TwoPage(); })); }, ), ), ), ); } }
第二個(gè)頁(yè)面:
class TwoPage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container( child: Text('這是第二個(gè)頁(yè)面'), ), ), ); } }
使用TabView、BottomNavigationBar、CupertinoTabView這些組件時(shí)也是一樣的原理,只需在每一個(gè)Tab中加入Navigator,不要忘記指定key。
看完上述內(nèi)容,是不是對(duì)Flutter中使用WillPopScope的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。