18 lines
421 B
Swift
18 lines
421 B
Swift
import SwiftUI
|
||
|
||
struct NewHomeTab: View {
|
||
|
||
var body: some View {
|
||
VStack {
|
||
VStack {
|
||
Text("Здесь не будут чаты")
|
||
.font(.title)
|
||
.foregroundColor(.gray)
|
||
|
||
Spacer()
|
||
}
|
||
}
|
||
// .background(Color(.secondarySystemBackground)) // Фон для всей вкладки
|
||
}
|
||
}
|