如何在Flutter中停用或覆盖Android“后退”按钮?

如何在Flutter中停用或覆盖Android“后退”按钮?,第1张

如何在Flutter中停用或覆盖Android“后退按钮

答案是

WillPopScope
。这将防止系统d出页面。您仍然可以使用
Navigator.of(context).pop()

@overrideWidget build(BuildContext context) {  return new WillPopScope(    onWillPop: () async => false,    child: new Scaffold(      appBar: new AppBar(        title: new Text("data"),        leading: new IconButton(          icon: new Icon(Icons.ac_unit),          onPressed: () => Navigator.of(context).pop(),        ),      ),    ),  );}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4974826.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存