initial commit: Proximity iOS app proposal, full Swift code scaffold, reference backend, testing docs, generated Xcode project

This commit is contained in:
2026-08-12 00:22:01 +00:00
commit 9d1b0f8dd9
52 changed files with 6271 additions and 0 deletions

View 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")
}
}
}
}