starting on addbasicinfo page

This commit is contained in:
talksik
2021-12-18 18:36:50 -08:00
parent e3f16addd5
commit 9bb41444ce
8 changed files with 126 additions and 90 deletions
@@ -0,0 +1,44 @@
//
// AddBasicInfoView.swift
// nirvana-ios
//
// Created by Arjun Patel on 12/18/21.
//
import SwiftUI
struct AddBasicInfoView: View {
var body: some View {
ZStack {
// bg
WavesGlassBackgroundView()
// programmatic back button
ZStack(alignment: .topLeading) {
Color.clear
Button {
} label: {
Label("back", systemImage:"chevron.left")
.labelStyle(.iconOnly)
.font(.title2)
}
.padding()
}
// all content top down
VStack {
LogoHeaderView()
Spacer()
}
}
}
}
struct AddBasicInfoView_Previews: PreviewProvider {
static var previews: some View {
AddBasicInfoView().environmentObject(AuthSessionStore())
}
}