Created the SettingsView view in the app target.
This commit is contained in:
parent
e5858c93bb
commit
90e2fb11d2
@ -15,6 +15,5 @@ extension Schema {
|
|||||||
static let entities = Schema([
|
static let entities = Schema([
|
||||||
Repository.self
|
Repository.self
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
26
Piper/Sources/UI/Views/SettingsView.swift
Normal file
26
Piper/Sources/UI/Views/SettingsView.swift
Normal 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()
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user