You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -179,7 +172,7 @@ class KeyboardAnimationCallback(
179
172
if (prevKeyboardHeight != newHeight &&!isMoving &&!isSuspended) {
180
173
Logger.w(
181
174
TAG,
182
-
"detected desynchronized state - force updating it. $prevKeyboardHeight -> $newHeight. Modal ${this.source}",
175
+
"detected desynchronized state - force updating it. $prevKeyboardHeight -> $newHeight. Attached: ${view.isAttachedToWindow} EVA: ${this.eventPropagationView.isAttachedToWindow}Modal ${this.source}",
Copy file name to clipboardExpand all lines: android/src/main/java/com/reactnativekeyboardcontroller/modal/ModalAttachedWatcher.kt
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,8 @@ class ModalAttachedWatcher(
77
77
// callback - otherwise keyboard transitions will not be animated
78
78
cb.suspend(true)
79
79
// attaching callback to Modal on Android < 12 can cause ghost animations, see: https://github.com/kirillzyusko/react-native-keyboard-controller/pull/718
80
-
// and overall attaching additional callbacks (if animation events go through the main window) is not necessary
80
+
// and overall attaching additional callbacks (if animation events go through the main window)
0 commit comments