-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMedicalReports.swift
74 lines (65 loc) · 2.65 KB
/
MedicalReports.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
// MedicalReports.swift
// Eule
//
// Created by Hariom Palkar on 14/09/20.
// Copyright © 2020 Hariom Palkar. All rights reserved.
//
import SwiftUI
struct MedicalReports: View {
@State private var OnTapped = false
@State private var Tapped = false
@State private var ScanTapped = false
var size = UIScreen.main.bounds
var body: some View {
ZStack{
Color.EuleBackground.edgesIgnoringSafeArea(.all)
VStack(alignment: .center, spacing: 10){
VStack(alignment: .center, spacing: 30){
Spacer()
.frame( height: size.width/20)
Text("Medical Reports")
.font(.EuleHeading)
.foregroundColor(.black)
.opacity(0.75)
Text("Upload your prescriptions, lab records or\nany other medical documents")
.font(.EuleTitle2)
.foregroundColor(.gray)
.multilineTextAlignment(.center)
.opacity(0.50)
NavigationLink(destination: AddRecords(), isActive: $Tapped) { EmptyView() }
NavigationLink(destination: ViewRecords(), isActive: $ScanTapped) { EmptyView() }
HStack(alignment: .center, spacing: 16){
Card2(imageName: "Upload", title: "Upload Documents")
.cornerRadius(15)
.onTapGesture {
self.Tapped = true
}
Card2(imageName: "Scan", title: "Scan Documents")
.cornerRadius(15)
.onTapGesture {
self.ScanTapped = true
}
}
Spacer()
Button(action: { UserDefaults.standard.set(true, forKey: "name")
NotificationCenter.default.post(name: NSNotification.Name("nameAdded"), object: nil)
}){
Text("Skip")
}.buttonStyle(EuleGreenButton())
}.background(Color.white)
}
.cornerRadius(15)
.frame(width: (size.width) )
.padding(.top, 40)
}
.navigationBarTitle("", displayMode: .inline)
.navigationBarHidden(true)
.accentColor(.EuleGreen)
}
}
struct MedicalReports_Previews: PreviewProvider {
static var previews: some View {
MedicalReports()
}
}