Added TouchID/FaceID to sign in

This commit is contained in:
Isaac Greene 2022-06-11 22:38:35 -04:00
parent 5c4d4f8059
commit 7d6643112d
12 changed files with 239 additions and 52 deletions

View file

@ -14,8 +14,8 @@ import SwiftUI
struct SecretView: View {
var body: some View {
VStack {
ScrollView {
ScrollView {
VStack {
VStack {
Image("jake.zimmerman.group")
.resizable()
@ -101,9 +101,90 @@ Email: greenei@students.lakeviewspartans.org
}
.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")
}
.frame(minWidth: .infinity)
}
}