콘텐츠 메인
- 모닝콜 탭 UI 페이지 생성
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// ContentMainTabFreeView.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2/22/25.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct ContentMainTabFreeView: View {
|
||||
|
||||
@StateObject var viewModel = ContentMainTabFreeViewModel()
|
||||
|
||||
var body: some View {
|
||||
BaseView(isLoading: $viewModel.isLoading) {
|
||||
ScrollView(.vertical, showsIndicators: false) {
|
||||
VStack(spacing: 0) {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
ContentMainTabFreeView()
|
||||
}
|
||||
Reference in New Issue
Block a user