oephrosinin
oephrosinin
Definitely @naomipindrus. I forced to use another library because this one does not allow to change button text on both IOS and Android(only IOS) and style of the buttons
@nhatndm I was able to achieve this in more accurate way: ``` { this.scrollView = ref.getScrollResponder(); }} /> ``` ``` const _scrollToInput = (reactNode: ReactNode) => { this.scrollView.props.scrollToFocusedInput(inputNode, 200); };...
Same here @brianneisler. That's exactly the reason why I pick this library to
thanks for response @mikehardy I combined index.android.js + App.js + firebaseService where we attach listeners: ```javascript import React from 'react'; import { AppRegistry, AppState } from 'react-native'; import messaging from...
@mikehardy This is the payload we send from our Firebase Connector service to Firebase, thanks ```javascript const notificationPayload = { to: 'deviceId', content_available: true, notification: { title: 'Notification title', body:...
> Before call ImageEditor.cropImage you need to prepare the target image. Use [react-native-image-resizer](https://github.com/bamlab/react-native-image-resizer) for just resize the image by a few pixels. As a result this will create a new...
hi @mikehardy, we are still having this issue. We are going to upgrade RN from 0.67 to latest version and some other libraries soon, hopefully this will fix the issue....
> Ok, so in our case and possible yours when clicking on a notification with the app in the foreground. It was mounting a new component / new app. I...
**UPADTE:** the problem was, that we had to use `android:launchMode="singleTask"` in Main in AndroidManifest file which resolved the issue: ``` ``` Hopefully, this will help others cc: @SeanArmstrong @mikehardy
Hey @amitbravo did solution provided by @devpascoe solve your problem and you are still using this library? Or you come up with something else? Thanks