最佳答案
我正在寻找一种在 InitState 方法上加载异步数据的方法,在构建方法运行之前我需要一些数据。我使用的是 GoogleAuth 代码,我需要执行构建方法’,直到一个 Stream 运行。
我的 initState 方法是:
@override
void initState () {
super.initState();
_googleSignIn.onCurrentUserChanged.listen((GoogleSignInAccount account) {
setState(() {
_currentUser = account;
});
});
_googleSignIn.signInSilently();
}
如有任何反馈,我将不胜感激。