Ben Saylor
Ben Saylor
> You'll need a yarn/npm version that's new enough to support version aliases. To expand on that, here's how I installed @kudo-ci/jsc-android with yarn: ``` yarn add jsc-android@npm:@kudo-ci/[email protected] ``` Confirmed...
In case it's helpful, here's how I worked around this issue with a React Native project: 1. use `configurations = ALL` (I also used `renderers = [new JsonReportRenderer()]`), which will...
@maxaggedon I think it was 6.2. The `configurations = ALL` workaround stopped working for me at some point (either due to upgrading gradle to 7.3.3 or some other change in...
I have this problem on Android, and ignoring `onPress` if `scrollState !== 'idle'` helps (thank you, @kyoz). Unfortunately, `onPageScrollStateChanged` does not fire 100% of the time. I have two nested...
Thanks for the clues, @vovkasm. Here's a workaround that removes the extra layer of serialization in `stagedState` by doing all the serialization in the storage layer instead: ``` import AsyncStorage...
> @brsaylor2 did that fix the issue for you? > > Also I don't understand how moving the serialization over to your async storage wrapper would fix the issue? >...
> @brsaylor2 did your solution still fixed the issue? Yes, I haven't had any reports of this crash since implementing that workaround.
The bug is still present - updated demo: https://github.com/brsaylor2/react-native-navigation/commit/619c6626c25ec3e0ab2eb0d73dab29f16ddf83da
possible duplicate of #35350
I'm seeing a similar problem, but only after toggling dark mode in the Quick Settings menu (swipe down from the top of the screen). Toggling that setting changes the background...