sodalive-ios/SodaLive/Sources/Content/Main/V2/Free/ContentMainTabFreeView.swift

27 lines
484 B
Swift

//
// 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()
}