This repository has been archived on 2025-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
ios_app/Shared/Views/Tab/ContactsTab.swift
2025-07-24 20:05:27 +03:00

26 lines
497 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
// VolnahubApp
//
// Created by cheykrym on 09/06/2025.
//
// НЕ ИСПОЛЬЗУЕТСЯ
import SwiftUI
struct ContactsTab: View {
var body: some View {
NavigationView {
VStack {
Text("Контакты")
.font(.largeTitle)
.bold()
.padding()
Spacer()
}
.navigationTitle("Контакты")
}
}
}