diff --git a/Piper/Sources/Logic/Extensions/Schema+Constants.swift b/Piper/Sources/Logic/Extensions/Schema+Constants.swift index 934a1c5..4022270 100644 --- a/Piper/Sources/Logic/Extensions/Schema+Constants.swift +++ b/Piper/Sources/Logic/Extensions/Schema+Constants.swift @@ -15,6 +15,5 @@ extension Schema { static let entities = Schema([ Repository.self ]) - } diff --git a/Piper/Sources/UI/Views/SettingsView.swift b/Piper/Sources/UI/Views/SettingsView.swift new file mode 100644 index 0000000..9580508 --- /dev/null +++ b/Piper/Sources/UI/Views/SettingsView.swift @@ -0,0 +1,26 @@ +// +// SettingsView.swift +// Piper ~ App +// +// Created by Javier Cicchelli on 13/10/2024. +// Copyright © 2024 Röck+Cöde. All rights reserved. +// + +import SwiftUI + +struct SettingsView: View { + + // MARK: Body + + var body: some View { + Text("Hello, World!") + .padding() + } + +} + +// MARK: - Previews + +#Preview { + SettingsView() +}