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/PublicsTab.swift
2025-07-24 20:05:27 +03:00

19 lines
389 B
Swift
Raw Permalink 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.

// НЕ ИСПОЛЬЗУЕТСЯ
import SwiftUI
struct PublicsTab: View {
var body: some View {
NavigationView {
VStack {
Text("Паблики")
.font(.largeTitle)
.bold()
.padding()
Spacer()
}
.navigationTitle("Паблики")
}
}
}