From 90e2fb11d24429cb06df8c8b4323d79b72c20e67 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sun, 13 Oct 2024 20:44:11 +0200 Subject: [PATCH] Created the SettingsView view in the app target. --- .../Logic/Extensions/Schema+Constants.swift | 1 - Piper/Sources/UI/Views/SettingsView.swift | 26 +++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 Piper/Sources/UI/Views/SettingsView.swift 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() +}