Vojtech Toth

Results 8 comments of Vojtech Toth

We are facing the same issue. Here is a nice article explaining the source of the issue: https://bladecoder.medium.com/fixing-recyclerview-nested-scrolling-in-opposite-direction-f587be5c1a04 There is a [workaround](https://github.com/callstack/react-native-pager-view/issues/164#issuecomment-965032619) which we are using, but it has some...

We are facing the same issue. Here is a nice article explaining the source of the issue: https://bladecoder.medium.com/fixing-recyclerview-nested-scrolling-in-opposite-direction-f587be5c1a04 There is a https://github.com/callstack/react-native-pager-view/issues/164#issuecomment-965032619 which we are using, but it has some...

> Typically ArrayIndexOutOfBoundsException in Okio indicates a thread-safety violation. If multiple threads are operating on the same Buffer at the same time, invariants are broken. > > Unfortunately, segment pooling...

We have switched to react-native-track-player, so cannot tell if this issue persists. But it was pretty easy to reproduce, just call setNowPlaying multiple times in a row.

@bradleyflood We have less bugs after migrating to RN track-player and also the code is cleaner. However, we noticed some issues related to lock screen notification widgets, so if it...

We faced the same issue. Added a workaround which reduces swipe sensitivity on the ViewPager when there is a webview as a child: https://gist.github.com/AlShevelev/ea43096e8f66b0ec45a0ec0dd1e8cacc. It is not ideal solution, so...

We patched the library using https://github.com/callstack/react-native-pager-view/issues/164#issuecomment-965032619

Fixed it with this patch: ``` diff --git a/node_modules/react-native-maps/android/src/main/java/com/rnmaps/maps/MapMarker.java b/node_modules/react-native-maps/android/src/main/java/com/rnmaps/maps/MapMarker.java index b755f9b..396191d 100644 --- a/node_modules/react-native-maps/android/src/main/java/com/rnmaps/maps/MapMarker.java +++ b/node_modules/react-native-maps/android/src/main/java/com/rnmaps/maps/MapMarker.java @@ -62,6 +62,7 @@ public class MapMarker extends MapFeature { private float markerHue...