Mindaugas Gudeliūnas

Results 4 comments of 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. ![image](https://user-images.githubusercontent.com/22294450/211874204-d315c676-7bd4-4c83-87eb-411aeef6e468.png)

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 =...

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.