Files
andros a31bc807cb Initial iOS port of meshmonitor-chat.el
SwiftUI app for the MeshMonitor REST API: setup screen with token
storage in Keychain, welcome dashboard mirroring the Emacs welcome
buffer, and channel/node/DM/unread lists with a shared chat view
supporting both channel and direct messages.
2026-04-14 15:30:21 +02:00

16 lines
229 B
Swift

import SwiftUI
struct RootView: View {
@Environment(Settings.self) private var settings
var body: some View {
Group {
if settings.isConfigured {
WelcomeView()
} else {
SetupView(isInitial: true)
}
}
}
}