// // FollowCreatorView.swift // SodaLive // // Created by klaus on 2023/08/19. // import SwiftUI struct FollowCreatorView: View { @StateObject var viewModel = FollowCreatorViewModel() @State private var isShowFollowNotifyDialog: Bool = false @State private var creatorId: Int = 0 @State private var selectedItemIndex: Int = 0 var body: some View { BaseView(isLoading: $viewModel.isLoading) { VStack(spacing: 0) { DetailNavigationBar(title: I18n.Follow.followingListTitle) HStack(spacing: 0) { Text(I18n.Follow.totalPrefix) .appFont(size: 13.3, weight: .medium) .foregroundColor(Color.grayee) Text(" \(viewModel.totalCount) ") .appFont(size: 13.3, weight: .medium) .foregroundColor(Color.mainRed3) Text(I18n.Follow.personUnit) .appFont(size: 13.3, weight: .medium) .foregroundColor(Color.grayee) Spacer() } .padding(.horizontal, 13.3) .padding(.top, 6.7) if viewModel.totalCount > 0 { ScrollView(.vertical, showsIndicators: false) { VStack(spacing: 13.3) { ForEach(0..