Files
vikunja_ios/VikunjaApp/ContentView.swift
T
2026-03-13 19:32:20 +01:00

25 lines
397 B
Swift

//
// ContentView.swift
// VikunjaApp
//
// Created by Justin Schwegmann on 13.03.26.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}