Mindaugas Gudeliūnas
Mindaugas Gudeliūnas
I've noticed that the `keyboardDidShow` event happens two times before the keyboard is shown and the `event.endCoordinates.height` is different each time. 
I've found a temporary solution here that works for majority of cases. https://gist.github.com/deviled/4e403a892e4ee57db8f923b46ed3b4f6 The idea is to filter out the events that have `event.startCoordinates.height` larger than `event.endCoordinates.height`. ``` _onKeyboardChange =...
We have the same issue as well.
This issue happens to us as well. We are using reactive `values` with `keepDirtyValues: true`, so when the whole form is marked as dirty the reactive values updates aren't correct.