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
I've found one visual glitch, which is quite hard to solve in pure JS
Here on the video you can see that when element is resized, there is short blink can be seen. On production build it's happening not all the time, but also pretty much visible. Problem here is that reaction to resize is one frame apart from the initial change size frame. https://www.youtube.com/shorts/BfsFKySlSQs
Option with animated container positions don't solve this problem too (#64). Modern react does not have componentDidMount, so we can not change position of the component below immediately with animated value.
LegendList with flashlist-autolayout does not have this problem (#67) because native module removes gap automatically.
The text was updated successfully, but these errors were encountered:
I've found one visual glitch, which is quite hard to solve in pure JS
Here on the video you can see that when element is resized, there is short blink can be seen. On production build it's happening not all the time, but also pretty much visible. Problem here is that reaction to resize is one frame apart from the initial change size frame.
https://www.youtube.com/shorts/BfsFKySlSQs
Option with animated container positions don't solve this problem too (#64). Modern react does not have componentDidMount, so we can not change position of the component below immediately with animated value.
LegendList with flashlist-autolayout does not have this problem (#67) because native module removes gap automatically.
The text was updated successfully, but these errors were encountered: