fix: 尝试解决网络异常导致的白屏 issues #67
This commit is contained in:
@ -85,6 +85,9 @@ class _MinePageState extends State<MinePage> {
|
||||
future: _futureBuilderFuture,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.done) {
|
||||
if (snapshot.data == null) {
|
||||
return const SizedBox();
|
||||
}
|
||||
if (snapshot.data['status']) {
|
||||
return Obx(
|
||||
() => userInfoBuild(mineController, context));
|
||||
|
Reference in New Issue
Block a user