feat(main): 메인 탭 화면을 추가한다
This commit is contained in:
27
SodaLive/Sources/V2/Main/MainPlaceholderTabView.swift
Normal file
27
SodaLive/Sources/V2/Main/MainPlaceholderTabView.swift
Normal file
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// 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: "홈")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user