28 lines
515 B
Swift
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: "홈")
|
|
}
|
|
}
|