您需要摆脱
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");}
有关更多详细信息,请参阅此处。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)