// // CompletedSeriesView.swift // SodaLive // // Created by klaus on 2/22/25. // import SwiftUI struct CompletedSeriesView: View { @StateObject var viewModel = CompletedSeriesViewModel() private let columns = [ GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible()) ] var body: some View { BaseView(isLoading: $viewModel.isLoading) { VStack(spacing: 13.3) { DetailNavigationBar(title: "완결 시리즈") HStack(alignment: .center, spacing: 0) { Text("전체") .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(.graye2) Text("\(viewModel.totalCount)") .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(.mainRed) .padding(.leading, 6.7) Text("개") .font(.custom(Font.medium.rawValue, size: 13.3)) .foregroundColor(.graye2) Spacer() } .padding(.horizontal, 13.3) ScrollView(.vertical, showsIndicators: false) { LazyVGrid(columns: columns, spacing: 13.3) { ForEach(0..