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

Commit

Permalink
feat :: 성별 선택 시 이름 입력으로 포커스
Browse files Browse the repository at this point in the history
  • Loading branch information
HongSJae committed Sep 21, 2023
1 parent 197ddcb commit 779838b
Showing 1 changed file with 4 additions and 0 deletions.
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 779838b

Please sign in to comment.