Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
merge :: (#165) 회원가입 간편화
Browse files Browse the repository at this point in the history
merge :: (#165) 회원가입 간편화
  • Loading branch information
HongSJae authored Sep 21, 2023
2 parents e568fe6 + 779838b commit 83e6954
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public let env = ProjectEnvironment (
targetName: "JOBIS-DSM-iOS",
targetTestName: "DSM-JOBISTests",
organizationName: "com.team.return",
deploymentTarget: .iOS(targetVersion: "15.0", devices: [.iphone, .ipad]),
deploymentTarget: .iOS(targetVersion: "15.0", devices: [.iphone]),
platform: .iOS,
baseSetting: [
"ENABLE_TESTABILITY": "YES"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,15 @@ struct InfoSettingView: View {
size: .large
) {
viewModel.isMan.toggle()
focusField = .name
}
} else {
ShadowBtn(
text: "남성",
size: .large
) {
viewModel.isMan.toggle()
focusField = .name
}
}

Expand All @@ -99,13 +101,15 @@ struct InfoSettingView: View {
size: .large
) {
viewModel.isWoman.toggle()
focusField = .name
}
} else {
ShadowBtn(
text: "여성",
size: .large
) {
viewModel.isWoman.toggle()
focusField = .name
}
}
}
Expand Down

0 comments on commit 83e6954

Please sign in to comment.