giantslogik
giantslogik
I'm using [keyboard-avoiding-scroll-view](https://github.com/APSL/react-native-keyboard-aware-scroll-view) On collapsible open i trigger: `setTimeout(()=>{this.scrollIntoView(this.collapsibleRef)},COLLAPSIBLE_SPEED);` The COLLAPSIBLE_SPEED constant above is the same one passed to the duration prop of the collapsible. ``` scrollIntoView(element){ this.scroll.props.scrollIntoView(element); } ```...
I did run into an issues with animations, breaking if they were triggered during a collapsible (open) animation. The trick was to hook the collapsible animation end before firing animation...
There are subtle problems as the default RN javascript engine lacks timezone information for DST. In my case with a device on GMT-5 (US CDT) i found 9 Mar 2003...
> Deploy Preview for _react-navigation-docs_ failed. Cause is unrelated to the change. From deploy log: _4:28:53 AM: Preparing Git Reference pull/1057/head_ _4:28:55 AM: Failing build: Failed to prepare repo_ _4:28:55...
https://github.com/facebook/react-native/issues/17565
I have this error. The underlying cause is: java_vm_ext.cc:577] JNI DETECTED ERROR IN APPLICATION: use of invalid jobject 0x778ee2d7b0 java_vm_ext.cc:577] from void com.swmansion.reanimated.NativeProxy$AnimationFrameCallback.onAnimationFrame(double)
Fixed it on my codebase. removed a NativeViewGestureHandler from my react dom. - provided by 'react-native-gesture-handler'
@Lms24 Thanks, the improved guide did clarify things. To have the maximum flexibility to switch builders, i've gone with the sentry-cli. Are there any advantages to the bundler plugins v/s...
Package didn't work for me.
Looking into the source code, i found two ways to avoid the error. (You only need one of these) 1. Set the layoutSize prop. (works great especially if your items...