initial commit: Proximity iOS app proposal, full Swift code scaffold, reference backend, testing docs, generated Xcode project
This commit is contained in:
18
Proximity/Views/ContentView.swift
Normal file
18
Proximity/Views/ContentView.swift
Normal file
@@ -0,0 +1,18 @@
|
||||
import SwiftUI
|
||||
|
||||
/// Root navigation. Tabs: Presence (the live feed) and Connections.
|
||||
struct ContentView: View {
|
||||
var body: some View {
|
||||
TabView {
|
||||
PresenceView()
|
||||
.tabItem {
|
||||
Label("Present", systemImage: "dot.radiowaves.left.and.right")
|
||||
}
|
||||
|
||||
ConnectionsView()
|
||||
.tabItem {
|
||||
Label("Connections", systemImage: "person.2")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user