Thijs
Thijs
Try replacing ``` setTimeout(() => { if (!this.mountedComponent) { return } const responder = this.getScrollResponder() responder && responder.scrollResponderScrollNativeHandleToKeyboard( reactNode, extraHeight, true ) }, keyboardOpeningTime) ``` with ``` if (this.mountedComponent) {...
I've just submitted [a PR](https://github.com/APSL/react-native-keyboard-aware-scroll-view/pull/426). Not sure if this library is actively maintained though.
Hey Hein, thanks for the help. Sure no problem, I'll probably get to it sometime next week.
[Pull request](https://github.com/IjzerenHein/react-navigation-shared-element/pull/195) created. Adds a test with an imageBackground which has a single text component as a child.
UNNotificationPresentationOptionAlert is deprecated in iOS 14 and replaced by UNNotificationPresentationOptionList & UNNotificationPresentationOptionBanner. This works for me (no notification alert when in foreground) ``` NSDictionary *userInfo = notification.request.content.userInfo; [RNCPushNotificationIOS didReceiveRemoteNotification:userInfo fetchCompletionHandler:^void...
> What you need is to access the `event` property to get the `pageX` and `pageY` values. That should give you what you need: > > ``` > onDragRelease={(event, gestureState,...
Unfortunately not, no. I didn’t want to spend too much time on it so in the end I removed this lib entirely and just made a few preset locations for...
React navigation v5's StackNavigator supports custom transitions out-of-the-box. https://reactnavigation.org/docs/stack-navigator/#animation-related-options
@kostasmoul @5AbhishekSaxena Perhaps related to device orientation? https://github.com/openid/AppAuth-Android/issues/769#issuecomment-993980294
I also ran into this issue. ```--transpileOnly``` fixes it for me as well, but this turns off type checking? I have no type errors when building with tsc, nor in...