react-native-firebase
react-native-firebase copied to clipboard
React Native Firebase Starter Project with Auth, Firestore, Storage and Push Notifications
I run `expo build:android` to generate apk but it failed with error code 500. ` at C:\Users\E7470\Documents\MEGA\Source Codes\reactnative\rn-firebase\node_modules\metro\src\JSTransformer\worker.js:367:33 iOS Bundling failed 5858ms Packager URL http://127.0.0.1:19001/node_modules\expo\AppEntry.bundle?dev=false&hot=false&minify=true&platform=ios returned unexpected code 500. Please...
need to change firebase config to import firebase from "firebase/app"; import "firebase/auth"; import "firebase/firestore";
FIXES ERROR: The action 'NAVIGATE' with payload {"name":"Home","params":{"user":{"id":"F3GvkANFWcQc0xbrfE8EHr5qxDp2","fullName":"Chris1","email":"[email protected]"}}} was not handled by any navigator. - Do you have a screen named 'Home'? Also added `Yarn` install to Expo instructions.
Fixed List requiring unique keys and added unsubscribe
The action 'NAVIGATE' with payload {"name":"Home","params":{"user":{"email":"xxxx","id":"xxx","fullName":"test"}}} was not handled by any navigator #3
Logout
Hi, how can I remove state and logout user from this project? I tried: const signOut = async () => { try { await firebase.auth().signOut(); navigation.navigate("Login"); } catch (e) {...
 copied the code into a project as getting to know to react, when trying to log in I'm getting the FirebaseError: [code=unavailable]: Failed to get document because the client...
btw, this breaks the instructions here I think: https://www.freecodecamp.org/news/react-native-firebase-tutorial/ the version of firebase ends up being wrong (8, vs 7). There is a warning when running `npm run android`, but...
After completing every step I get an the error mentioned in the title when trying to navigate to the HomeScreen: On line 50 of App.js: `{props => }` I've even...
Step 4 Implement the UI in the accompanying guide leads to a white screen blank expo app on iOS simulator when login and registration should be showing up.