File tree Expand file tree Collapse file tree 6 files changed +22
-17
lines changed
MC2-Team3-Pilling.xcodeproj Expand file tree Collapse file tree 6 files changed +22
-17
lines changed Original file line number Diff line number Diff line change 550
550
CODE_SIGN_STYLE = Automatic;
551
551
CURRENT_PROJECT_VERSION = 1;
552
552
DEVELOPMENT_ASSET_PATHS = "\"MC2-Team3-Pilling/Preview Content\"";
553
- DEVELOPMENT_TEAM = F5WP2FDW4U ;
553
+ DEVELOPMENT_TEAM = 223UXY9RY6 ;
554
554
ENABLE_HARDENED_RUNTIME = YES;
555
555
ENABLE_PREVIEWS = YES;
556
556
GENERATE_INFOPLIST_FILE = YES;
591
591
CODE_SIGN_STYLE = Automatic;
592
592
CURRENT_PROJECT_VERSION = 1;
593
593
DEVELOPMENT_ASSET_PATHS = "\"MC2-Team3-Pilling/Preview Content\"";
594
- DEVELOPMENT_TEAM = F5WP2FDW4U ;
594
+ DEVELOPMENT_TEAM = 223UXY9RY6 ;
595
595
ENABLE_HARDENED_RUNTIME = YES;
596
596
ENABLE_PREVIEWS = YES;
597
597
GENERATE_INFOPLIST_FILE = YES;
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
3
LastUpgradeVersion = " 1530"
4
- version = " 1.7 " >
4
+ version = " 1.8 " >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
7
7
buildImplicitDependencies = " YES"
Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ extension MainView{
14
14
print ( " today-1: \( sortedDay [ today- 1 ] . status) " )
15
15
if today == 1 && sortedDay [ today - 1 ] . status == 0 { // 첫째날 -> 약먹어야함
16
16
statusNum = 1
17
- } else if sortedDay [ today - 1 ] . status == 0 && sortedDay [ today - 2 ] . status == 1 { // 약먹어야함
17
+ } else if sortedDay [ today - 1 ] . status == 0 { // 약먹어야함
18
18
statusNum = 1
19
- } else if sortedDay [ today - 1 ] . status == 1 && sortedDay [ today - 2 ] . status == 0 { // 약먹음 -> 윙크
19
+ } else if sortedDay [ today - 1 ] . status == 1 { // 약먹음 -> 윙크
20
20
statusNum = 6
21
21
}
22
22
else if sortedDay [ today - 1 ] . status == 1 { // 약먹음 -> 윙크
@@ -85,12 +85,9 @@ extension MainView{
85
85
86
86
func makeBody( configuration: Configuration ) -> some View {
87
87
configuration. label
88
- . padding ( . vertical, 25 )
89
- . frame ( maxWidth: . infinity)
90
88
. background ( isDisabled ? . customGray : . customGreen)
91
- . clipShape ( RoundedRectangle ( cornerRadius: 20 ) )
92
- . foregroundColor ( . black)
93
89
. opacity ( configuration. isPressed ? 0.8 : 1.0 )
90
+ . clipShape ( RoundedRectangle ( cornerRadius: 20 ) )
94
91
}
95
92
}
96
93
Original file line number Diff line number Diff line change @@ -145,12 +145,13 @@ struct ChooseStatusView: View {
145
145
Text ( " 수정 " )
146
146
. font ( . title3)
147
147
. bold ( )
148
+ . padding ( . vertical, 25 )
149
+ . frame ( maxWidth: . infinity)
150
+ . background ( . customGreen)
151
+ . clipShape ( RoundedRectangle ( cornerRadius: 20 ) )
152
+ . foregroundColor ( . black)
148
153
} )
149
- . padding ( . vertical, 25 )
150
- . frame ( maxWidth: . infinity)
151
- . background ( . customGreen)
152
- . clipShape ( RoundedRectangle ( cornerRadius: 20 ) )
153
- . foregroundColor ( . black)
154
+
154
155
155
156
}
156
157
. padding ( 25 )
Original file line number Diff line number Diff line change @@ -212,10 +212,16 @@ struct MainView: View {
212
212
} , label: {
213
213
Text ( " 잔디 심기 " )
214
214
. largeBold ( )
215
+ . padding ( . vertical, 25 )
216
+ . frame ( maxWidth: . infinity)
217
+ . foregroundColor ( . black)
218
+
219
+
215
220
} )
216
221
. buttonStyle ( CustomButtonStyle ( isDisabled: sortedDay [ today- 1 ] . status != 0 ) )
217
222
. disabled ( sortedDay [ today- 1 ] . status != 0 )
218
223
224
+
219
225
}
220
226
. padding ( )
221
227
// 알람 시간(type: Date)을 alarmTime에 넘겨주세요
Original file line number Diff line number Diff line change @@ -112,12 +112,13 @@ struct OnboardingFirstView: View {
112
112
} , label: {
113
113
Text ( " 다음으로 " )
114
114
. largeBold ( )
115
+
116
+ . foregroundColor ( . black)
117
+ . padding ( . vertical, 25 )
118
+ . frame ( maxWidth: . infinity)
115
119
} )
116
- . padding ( . vertical, 25 )
117
- . frame ( maxWidth: . infinity)
118
120
. background ( selectedPill == nil ? Color . customGray : Color . customGreen)
119
121
. clipShape ( RoundedRectangle ( cornerRadius: 20 ) )
120
- . foregroundColor ( . black)
121
122
. padding ( )
122
123
. disabled ( selectedPill == nil )
123
124
}
You can’t perform that action at this time.
0 commit comments