From fd3dca703eb0be9089015c8c22d8fe311e06a37a Mon Sep 17 00:00:00 2001 From: Ching Date: Sat, 3 Jun 2023 18:55:18 +0800 Subject: [PATCH] =?UTF-8?q?feat(View):=20=E4=BF=AE=E6=94=B9=20profile=20?= =?UTF-8?q?=E9=A1=B5=20status=20tag=20=E7=BB=84=E4=BB=B6=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改 profile 页 status tag 组件样式 Signed-off-by: Ching --- duduji/Core/Profile/Views/ProfileView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/duduji/Core/Profile/Views/ProfileView.swift b/duduji/Core/Profile/Views/ProfileView.swift index b7d3097..d7155fa 100644 --- a/duduji/Core/Profile/Views/ProfileView.swift +++ b/duduji/Core/Profile/Views/ProfileView.swift @@ -220,6 +220,7 @@ extension ProfileView { Picker("tags", selection: $selectedTag) { ForEach(ProfileTabFilterVeiwModel.currentAccountTabs, id: \.rawValue) { tag in Image(systemName: tag.iconName) + .tag(tag) } } .pickerStyle(.segmented)