forked from CS342-Archive/AssignmentOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYoonjuKim.swift
134 lines (107 loc) · 3.92 KB
/
YoonjuKim.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
//
// YoonjuKim.swift
// Assignment One
//
// Created by Yoon-Ju Kim on 1/17/22.
//
import SwiftUI
struct YoonjuKim: View {
var body: some View {
VStack(){
//button
Button(action: {
}, label: {
Text("YOONJU KIM")
.fontWeight(.bold)
.tracking(15)
.font(.system(size: 20))
})
.frame(width: 300, height: 20)
.foregroundColor(Color.white)
.padding()
.background(Color.orange)
.cornerRadius(150)
.padding(.bottom, 5.0)
//image intros
HStack(spacing: 60){
//Mood
VStack{
Text("MOOD")
.fontWeight(.medium)
.foregroundColor(Color.gray)
.lineLimit(1)
.font(.system(size: 12))
Image(systemName: "sun.max")
.renderingMode(.original)
.resizable()
.foregroundColor(Color.gray)
.frame(width: 28, height: 28)
}
//Love - Snow
VStack{
Text("LOVE")
.fontWeight(.medium)
.foregroundColor(Color.gray)
.lineLimit(1)
.font(.system(size: 12))
Image(systemName: "globe.americas")
//.renderingMode(.original)
.resizable()
.foregroundColor(Color.gray)
.frame(width: 28, height: 28)
}
//love earth/nature
VStack{
Text("HOBBY")
.fontWeight(.medium)
.foregroundColor(Color.gray)
.lineLimit(1)
.font(.system(size: 12))
Image(systemName: "car")
.renderingMode(.original)
.resizable()
.foregroundColor(Color.gray)
.frame(width: 28, height: 28)
}
}
Image("Yoonjuk")
.resizable(capInsets: EdgeInsets(top: 0.0, leading: 0.0, bottom: 0.0, trailing: 0.0))
.aspectRatio(contentMode: .fill)
.frame(width: 300.0, height: 250.0)
.clipShape(Circle())
.overlay (
Circle().stroke(Color.white, lineWidth: 4)
)
.padding(.top)
HStack(){
Text("+")
.font(.system(.title, design: .default))
.fontWeight(.medium)
.foregroundColor(Color.orange)
.lineLimit(3)
Text("About Me")
.font(.system(.title, design: .default))
.fontWeight(.medium)
.lineLimit(3)
Text("+")
.font(.system(.title, design: .default))
.fontWeight(.medium)
.foregroundColor(Color.orange)
.lineLimit(3)
}
Text("Yoonju is a Sophomore at Stanford Univeristy studying Symsys. She is interested in the intersection between art, business, and tech.")
.fontWeight(.thin)
.multilineTextAlignment(.center)
.lineLimit(5)
.font(.body)
.padding(1)
Link("View Yoonju's Portfolio", destination: URL(string: "yoonju-kim.weebly.com")!)
.padding(.top)
}
}
struct YoonjuKim_Previews: PreviewProvider {
static var previews: some View {
YoonjuKim()
}
}
}