Files
ABS-Client/Audiobookshelf swift/ContentView.swift
2026-05-13 17:46:14 +02:00

25 lines
404 B
Swift

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