// // BlockMemberListView.swift // SodaLive // // Created by klaus on 9/4/24. // import SwiftUI struct BlockMemberListView: View { @StateObject var viewModel = BlockMemberListViewModel() var body: some View { BaseView(isLoading: $viewModel.isLoading) { VStack(spacing: 0) { DetailNavigationBar(title: "차단 리스트") HStack(spacing: 0) { Text("총 ") .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(Color.grayee) Text("\(viewModel.totalCount)") .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(Color.mainRed3) Text(" 명") .font(.custom(Font.medium.rawValue, size: 13.3)) .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..