24 lines
492 B
Swift
24 lines
492 B
Swift
//
|
||
// ContentView.swift
|
||
// VikunjaApp
|
||
//
|
||
// Created by Justin Schwegmann on 13.03.26.
|
||
//
|
||
|
||
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 {
|
||
NavigationStack {
|
||
WebView(url: vikunjaURL, canGoBack: $canGoBack)
|
||
.ignoresSafeArea()
|
||
.navigationBarHidden(true)
|
||
}
|
||
}
|
||
}
|