Skip to content

Commit

Permalink
fix issue keyboard dismiss after showing platformLayer
Browse files Browse the repository at this point in the history
  • Loading branch information
dima-avdeev-jb committed Feb 17, 2024
1 parent fcaca4d commit bc011cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ internal class FocusStackImpl : FocusStack<UIView> {
override fun popUntilNext(view: UIView) {
if (activeViews.contains(view)) {
val index = activeViews.indexOf(view)
resignedViews += activeViews.subList(index, activeViews.lastIndex)
resignedViews += activeViews.subList(index, activeViews.size)
activeViews = activeViews.subList(0, index)

mainScope.launch {
Expand Down

0 comments on commit bc011cf

Please sign in to comment.