Skip to content

Commit 2ca5b37

Browse files
committed
[fix][#29] 키보드가 올라와있는 상태에서 취소버튼을 눌러 컨펌뷰가 떴을 때 hide keyboard
1 parent 8e4a768 commit 2ca5b37

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

DontForget/Sources/Presentations/Application/Creation/CreationView.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ struct CreationView: View {
200200
}
201201
}
202202
}
203+
.onChange(of: showConfirmView) { _, showed in
204+
if showed {
205+
hideKeyboard()
206+
}
207+
}
203208
}
204209
.navigationBarHidden(true)
205210
}

0 commit comments

Comments
 (0)