mod: 用户页面投稿加载

This commit is contained in:
guozhigq
2023-07-27 23:35:20 +08:00
parent ca12be5373
commit bc83d26073
9 changed files with 180 additions and 50 deletions

View File

@ -46,7 +46,7 @@ class _FollowPageState extends State<FollowPage> {
titleSpacing: 0,
centerTitle: false,
title: Text(
'的关注',
'${_followController.name}的关注',
style: Theme.of(context).textTheme.titleMedium,
),
),
@ -72,9 +72,13 @@ class _FollowPageState extends State<FollowPage> {
),
);
} else {
return HttpError(
errMsg: data['msg'],
fn: () => _followController.queryFollowings('init'),
return CustomScrollView(
slivers: [
HttpError(
errMsg: data['msg'],
fn: () => _followController.queryFollowings('init'),
)
],
);
}
} else {