Made small improvements like dismissing the keyboard. Tapping the Contacts tab causes the app to crash.

This commit is contained in:
Isaac Greene 2022-06-10 23:55:34 -04:00
parent b77ef882e8
commit 5c4d4f8059
21 changed files with 174 additions and 36 deletions

View file

@ -15,7 +15,7 @@ import SwiftUI
struct SecretView: View {
var body: some View {
VStack {
HStack {
ScrollView {
VStack {
Image("jake.zimmerman.group")
.resizable()
@ -59,8 +59,6 @@ Email: bostc@students.lakeviewspartans.org
}
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
}
HStack {
VStack {
Image("aiden.moore.states")
.resizable()
@ -104,6 +102,8 @@ Email: greenei@students.lakeviewspartans.org
.frame(minWidth: 350, minHeight: 175)
.border(.primary)
}
.navigationTitle("Contacts")
}
.frame(minWidth: .infinity)
}
}