Files
sodalive-ios/SodaLive/Sources/V2/Main/MainPlaceholderTabView.swift
2026-05-19 15:54:37 +09:00

28 lines
515 B
Swift

//
// MainPlaceholderTabView.swift
// SodaLive
//
import SwiftUI
struct MainPlaceholderTabView: View {
let title: String
var body: some View {
ZStack {
Color.black
.ignoresSafeArea()
Text(title)
.appFont(size: 20, weight: .bold)
.foregroundColor(.white)
}
}
}
struct MainPlaceholderTabView_Previews: PreviewProvider {
static var previews: some View {
MainPlaceholderTabView(title: "")
}
}