fix: 未登录访问up主页异常

This commit is contained in:
guozhigq
2023-12-20 00:34:26 +08:00
parent 7f7154bba4
commit d9859755e3
2 changed files with 222 additions and 189 deletions

View File

@ -290,7 +290,7 @@ class _MemberPageState extends State<MemberPage>
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
profile(_memberController),
ProfilePanel(ctr: _memberController),
const SizedBox(height: 20),
Row(
children: [
@ -388,7 +388,7 @@ class _MemberPageState extends State<MemberPage>
}
} else {
// 骨架屏
return profile(_memberController, loadingStatus: true);
return ProfilePanel(ctr: _memberController, loadingStatus: true);
}
},
),