splits/Splits/SecretView.swift
2022-08-08 17:41:07 -04:00

184 lines
4.3 KiB
Swift

//
// SecretView.swift
// Splits
//
// Created by Isaac Greene on 2022-06-09.
//
import SwiftUI
struct SecretView: View {
var body: some View {
ScrollView {
VStack {
VStack {
Image("jake.zimmerman.group")
.resizable()
.interpolation(.high)
.frame(width: 75, height: 75)
.clipShape(Circle())
Text("Zim")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Jake Zimmerman
Email: jzimmerman@lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 753-5620", destination: URL(string: "tel:2697535620")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
VStack {
Image("caleb.bost.duo")
.resizable()
.interpolation(.high)
.frame(width: 75, height: 75)
.clipShape(Circle())
Text("Caleb")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Caleb Bost
Email: bostc@students.lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 578-6148", destination: URL(string: "tel:2695786148")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
VStack {
Image("aiden.moore.states")
.resizable()
.interpolation(.high)
.frame(width: 75, height: 75)
.clipShape(Circle())
Text("Aiden")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Aiden Moore
Email: moorea8@students.lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 579-3882", destination: URL(string: "tel:2695793882")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
VStack {
Image("isaac.greene.clouds")
.resizable()
.interpolation(.high)
.frame(width: 75, height: 75)
.clipShape(Circle())
Text("Isaac")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Isaac Greene
Email: greenei@students.lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 282-2280", destination: URL(string: "tel:2692822280")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
VStack {
Image(systemName: "person.crop.circle.fill")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 75, height: 75)
Text("Pryor")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Becky Pryor
Email: bpryor@lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 209-9906", destination: URL(string: "tel:2692099906")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
VStack {
Image(systemName: "person.crop.circle.fill")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 75, height: 75)
Text("Paige")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Paige Ratliff
Email: ratliffp@students.lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 753-8569", destination: URL(string: "tel:2697538569")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
VStack {
Image(systemName: "person.crop.circle.fill")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 75, height: 75)
Text("Emma")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Emma Kerschbaum
Email: kerschbaume@students.lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 419-7880", destination: URL(string: "tel:2694197880")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
VStack {
Image(systemName: "person.crop.circle.fill")
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 75, height: 75)
Text("Alyssa")
.font(.title2)
VStack (alignment: .leading) {
Text("""
Name: Alyssa Hinton
Email: hintona2@students.lakeviewspartans.org
""")
HStack {
Text("Phone:")
Link("(269) 589-7609", destination: URL(string: "tel:2695897609")!)
}
}
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
}
.frame(maxWidth: .infinity)
.navigationTitle("Contacts")
}
}
}