-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddGoals.swift
93 lines (84 loc) · 3.33 KB
/
AddGoals.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
// AddGoals.swift
// Eule
//
// Created by Hariom Palkar on 14/09/20.
// Copyright © 2020 Hariom Palkar. All rights reserved.
//
import SwiftUI
struct AddGoals: View {
@State public var goalName = ""
@State public var goalType = ""
@State public var goalTime = ""
@State public var goalDays = ""
var body: some View {
VStack{
ZStack{
Color.EuleBackground.edgesIgnoringSafeArea(.all)
Spacer()
VStack(alignment: .leading, spacing: 24){
ScrollView{
Text("Add Goals")
.font(.EuleHeading)
.foregroundColor(.EuleGreen)
Spacer()
CustomForm {
CustomSection(header:Text("Goal Name")) {
VStack {
TextField("Ex: Hit Gym", text: $goalName)
.keyboardType(.alphabet)
}
}
}
// add type picker
CustomForm{
CustomSection(header: Text("Goal Type") ) {
VStack {
TextField("Ex: Workout", text: $goalType)
}
}
}
.background(Color.white)
.cornerRadius(12)
CustomForm{
CustomSection(header:Text("Time Duration")) {
VStack {
TextField("01:25:00", text: $goalTime)
.keyboardType(.namePhonePad)
}
}
}
.background(Color.white)
.cornerRadius(12)
// add picker
CustomForm{
CustomSection(header:Text("Days")) {
VStack {
TextField("Date", text: $goalDays)
.keyboardType(.namePhonePad)
}
}
}
Button(action: {}){
HStack(alignment: .center){
Text("Done")
.foregroundColor(.white)
.font(.EuleLabel)
}
.padding(.all)
.frame(width: (UIScreen.main.bounds.width - 20), height: 56, alignment: .center)
.background(Color(.EuleGreen))
.cornerRadius(12)
}
}
.padding(.init(top: 15, leading: 10, bottom: 0, trailing: 10))
}
}
}
}
}
struct AddGoals_Previews: PreviewProvider {
static var previews: some View {
AddGoals()
}
}