// // FollowerListView.swift // SodaLive // // Created by klaus on 2023/08/11. // import SwiftUI struct FollowerListView: View { let userId: Int @StateObject var viewModel = FollowerListViewModel() 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(hex: "eeeeee")) Text("\(viewModel.totalCount)") .font(.custom(Font.medium.rawValue, size: 18.3)) .foregroundColor(Color(hex: "9970ff")) Spacer() } .padding(.top, 26.7) .padding(.horizontal, 13.3) ScrollView(.vertical, showsIndicators: false) { LazyVStack(spacing: 0) { ForEach(0..