Skip to content

Commit

Permalink
[fix][#29] 키보드가 올라와있는 상태에서 취소버튼을 눌러 컨펌뷰가 떴을 때 hide keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
dayo2n committed Mar 4, 2024
1 parent 8e4a768 commit 2ca5b37
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ struct CreationView: View {
}
}
}
.onChange(of: showConfirmView) { _, showed in
if showed {
hideKeyboard()
}
}
}
.navigationBarHidden(true)
}
Expand Down

0 comments on commit 2ca5b37

Please sign in to comment.