ios_app/Shared/Views/Tab/PublicsTab.swift
2025-07-24 20:05:27 +03:00

19 lines
389 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.

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