feat(character-detail/gallery): 갤러리 추가 및 이미지 목록 연동

- 에셋 추가: ic_new_lock
- 그리드 UI 적용
This commit is contained in:
Yu Sung
2025-09-02 02:37:35 +09:00
parent f11120b8d0
commit 392184fd34
6 changed files with 229 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
//
// CharacterDetailGalleryViewModel.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
import Foundation
import Combine
import Moya
final class CharacterDetailGalleryViewModel: ObservableObject {
// MARK: - Published State
@Published var isLoading: Bool = false
@Published var errorMessage: String = ""
@Published var isShowPopup = false
// MARK: - Private
private let repository = CharacterDetailGalleryRepository()
private var subscription = Set<AnyCancellable>()
// MARK: - Public Methods
}