Created the SettingsView view in the app target.

This commit is contained in:
Javier Cicchelli 2024-10-13 20:44:11 +02:00
parent e5858c93bb
commit 90e2fb11d2
2 changed files with 26 additions and 1 deletions

View File

@ -16,5 +16,4 @@ extension 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()
}