Created simple burrow UI for iOS

Edited the existing view so that if running on an iOS device it would
provide a basic UI with a toggle switch that will allow the user to
connect/disconnect from the VPN.
This commit is contained in:
Conrad Kramer 2023-09-09 11:18:21 -07:00
parent 6368ca7f74
commit 2152fc3081
2 changed files with 48 additions and 28 deletions

View file

@ -15,7 +15,7 @@ struct BurrowApp: App {
var body: some Scene {
WindowGroup {
TunnelView()
TunnelView(tunnel: Self.tunnel)
}
}
}