created a webkit based client for vikunja on ios

This commit is contained in:
2026-03-13 21:45:16 +01:00
parent 4aa0d808ac
commit d76b12ffe4
7 changed files with 143 additions and 26 deletions
+9 -10
View File
@@ -7,18 +7,17 @@
import SwiftUI
// HIER die eigene IP/Port eintragen:
let vikunjaURL = URL(string: "http://192.168.178.89:3456")!
struct ContentView: View {
@State private var canGoBack = false
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
NavigationStack {
WebView(url: vikunjaURL, canGoBack: $canGoBack)
.ignoresSafeArea()
.navigationBarHidden(true)
}
.padding()
}
}
#Preview {
ContentView()
}