mod: 修改已关注upup分组仅自己可见

This commit is contained in:
guozhigq
2023-10-22 11:24:51 +08:00
parent 445a37d305
commit 8aa38a36c6
3 changed files with 35 additions and 26 deletions

View File

@ -84,7 +84,10 @@ class _FollowListState extends State<FollowList> {
),
);
} else {
return FollowItem(item: list[index]);
return FollowItem(
item: list[index],
ctr: widget.ctr,
);
}
},
)