Files
vikunja_ios/VikunjaApp/ContentView.swift
T

24 lines
492 B
Swift
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// 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)
}
}
}