ios_app_v2/yobble/Views/Tab/ContactsTab.swift
2025-10-23 20:50:44 +03:00

25 lines
504 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// ContactsTab.swift
// yobble
//
// Created by cheykrym on 23.10.2025.
//
import SwiftUI
struct ContactsTab: View {
var body: some View {
VStack {
VStack {
Text("Здесь не будут чаты")
.font(.title)
.foregroundColor(.gray)
Spacer()
}
}
// .background(Color(.secondarySystemBackground)) // Фон для всей вкладки
}
}