Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2026-01-02 12:05:31 +08:00
parent 80e007bac6
commit 041af37bb0
67 changed files with 775 additions and 838 deletions

View File

@@ -41,10 +41,10 @@ class FollowController extends GetxController with GetTickerProviderStateMixin {
Future<void> queryFollowUpTags() async {
final res = await MemberHttp.followUpTags();
if (res.isSuccess) {
if (res case Success(:final response)) {
tabs
..assign(MemberTagItemModel(name: '全部关注'))
..addAll(res.data);
..addAll(response);
int initialIndex = 0;
if (tabController != null) {
initialIndex = tabController!.index.clamp(0, tabs.length - 1);