[App] Open settings #5

Merged
javier merged 10 commits from app/open-settings into main 2024-10-13 22:17:50 +00:00
2 changed files with 26 additions and 1 deletions
Showing only changes of commit 90e2fb11d2 - Show all commits

View File

@ -15,6 +15,5 @@ extension Schema {
static let entities = Schema([
Repository.self
])
}

View File

@ -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()
}