// // FollowerListView.swift // SodaLive // // Created by klaus on 2023/08/11. // import SwiftUI struct FollowerListView: View { let userId: Int @StateObject var viewModel = FollowerListViewModel() @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: "팔로워 리스트") HStack(spacing: 4) { Text("전체") .font(.custom(Font.bold.rawValue, size: 18.3)) .foregroundColor(Color.grayee) Text("\(viewModel.totalCount)") .font(.custom(Font.medium.rawValue, size: 18.3)) .foregroundColor(Color.button) Spacer() } .padding(.top, 26.7) .padding(.horizontal, 13.3) ScrollView(.vertical, showsIndicators: false) { LazyVStack(spacing: 0) { ForEach(0..