flutter的未来 vs布尔型

flutter的未来 vs布尔型,第1张

flutter的未来 vs布尔

您需要摆脱

bool
困境
Future<bool>
。使用可以
then block
await

然后阻止

_checkConnection() {  Utiliy.checkConnection().then((connectionResult) {    Utility.showalert(context, connectionResult ? "OK": "internet needed");  })}

等待着

_checkConnection() async { bool connectionResult = await Utiliy.checkConnection(); Utility.showalert(context, connectionResult ? "OK": "internet needed");}

有关更多详细信息,请参阅此处。



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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存