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
+17
View File
@@ -0,0 +1,17 @@
//
// VikunjaApp.swift
// VikunjaApp
//
// Created by Justin Schwegmann on 13.03.26.
//
import SwiftUI
@main
struct VikunjaApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}