Initial Commit

This commit is contained in:
Scarriffle
2026-05-13 17:46:14 +02:00
commit 7d0bc6466a
8 changed files with 467 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//
// 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()
}