react-native-firestack icon indicating copy to clipboard operation
react-native-firestack copied to clipboard

A firestack v3 react-native implementation

Results 101 react-native-firestack issues
Sort by recently updated
recently updated
newest added

Hey, The following code returns `null`, however I do get a correct response using Firebase Web API. ```js firestack.database.ref('messages').orderByChild('uid').equalTo('wIRBRv9SdtfO7EUdhqL45tLhkzm2').on('value', (snapshot) => { console.log(snapshot.val()); }); ``` Any ideas? Thanks for all...

bug

When the AUTH_CHANGED_EVENT returns back the result of the callback in userPropsFromFIRUserWithToken the "errorMessage" response looks for a localizedFailureReason property on the error object which is not present and an...

I think i may found i bug, First i insert this data to my database ``` firebase.database.ref('request').push({ status: 0, finished: false, rated: false, user: userKey, ower: owerKey, garage: garageKey, });...

I cannot find any examples of how to use remote config. I looked at the code and attempted the following: ``` import Firestack from 'react-native-firestack' this.firestack = new Firestack(); console.log(firestack.remoteConfig.setDev());...

Hi -- I've been trying to implement firestack into my react-native app with redux, but following along the tutorial [here ](https://www.fullstackreact.com/articles/announcing-firestack-for-firebase/) has been a challenge -- Possibly because there have...

docs
awaiting user response

Hi, I created a new project and installed firestack and when i try to build my project i get the following error in cmd: Failed to build DependencyGraph: @providesModule naming...

Hi, when trying to call the [`updateEmail`](https://github.com/fullstackreact/react-native-firestack/blob/v3/docs/api/authentication.md#updateemailemail-string) function (branch: [v3](https://github.com/fullstackreact/react-native-firestack/tree/v3)) (no matter whether with an empty string, or a valid email address), there's an error in `lib/utils/index.js` in the `toWebSDKErrorCode(code,...

Hi so I'm using the latest v3 branch like this: ```` export const loginWithEmail = ({ email, password }) => ((dispatch: Dispatch) => { console.log(email, password); dispatch({ type: BEGIN_EMAIL_LOGIN });...

we're building an app whereby its important that if one user makes a change to a Firebase ref, and another user has their device open and looking at the exact...