Initial commit, first views

This commit is contained in:
2023-01-12 23:07:37 +01:00
parent 830cb8785a
commit f87c712e41
19 changed files with 319 additions and 78 deletions
+20
View File
@@ -0,0 +1,20 @@
//
// Dashboard.swift
// Firebonk
//
// Created by Patrick Müller on 12.01.23.
//
import SwiftUI
struct Dashboard: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct Dashboard_Previews: PreviewProvider {
static var previews: some View {
Dashboard()
}
}
+20
View File
@@ -0,0 +1,20 @@
//
// People.swift
// Firebonk
//
// Created by Patrick Müller on 12.01.23.
//
import SwiftUI
struct People: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct People_Previews: PreviewProvider {
static var previews: some View {
People()
}
}
+20
View File
@@ -0,0 +1,20 @@
//
// Profile.swift
// Firebonk
//
// Created by Patrick Müller on 12.01.23.
//
import SwiftUI
struct Profile: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct Profile_Previews: PreviewProvider {
static var previews: some View {
Profile()
}
}
+20
View File
@@ -0,0 +1,20 @@
//
// Spaces.swift
// Firebonk
//
// Created by Patrick Müller on 12.01.23.
//
import SwiftUI
struct Spaces: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
struct Spaces_Previews: PreviewProvider {
static var previews: some View {
Spaces()
}
}