Ebben az oktatóanyagban egy React Native alkalmazást fogunk készíteni, amely integrálva van egy Firebase háttérprogrammal. Az alkalmazás támogatja a React Native CLI-t, valamint az Expo CLI-t.
Ez a React Native Firebase oktatóanyag ismerteti a főbb szolgáltatásokat, például a hitelesítést, a regisztrációt és az adatbázis (Firestore) CRUD műveleteket.
A teljes forráskódot a Github-ból is letöltheti, ha egyenesen be akar ugrani a kódba.
Ez az oktatóanyag bemutatja a következő szakaszok részleteit:
- Firebase projekt létrehozása
- Új React Native alkalmazás létrehozása és konfigurálása
- A mappa struktúrájának, útvonalainak és navigációjának beállítása
- A felhasználói felület bevezetése a bejelentkezéshez, a regisztrációhoz és a kezdőképernyőkhöz
- Regisztráció a Firebase Auth
- Bejelentkezés a Firebase Auth segítségével
- Tartós bejelentkezési adatok
- Adatok írása és olvasása a Firebase Firestore szolgáltatásból
Minden további nélkül kezdjük el kiépíteni a React Native Firebase projektet. A végleges mobilalkalmazás így fog kinézni:

1. Hozzon létre egy Firebase-projektet
Lépjen a Firebase.com oldalra, és hozzon létre egy új fiókot. A bejelentkezés után új projektet hozhat létre a Firebase Console-ban.
- Hozzon létre egy új fiókot a Firebase.com oldalon
- Hozzon létre egy új projektet a Firebase Console-ban
- Engedélyezze az E-mail és jelszó hitelesítési módszert a Firebase Console -> Hitelesítés -> Bejelentkezés módban

- Hozzon létre egy új iOS alkalmazást a com.reactnativefirebase alkalmazásazonosítóval

- (Opcionális) Hozzon létre egy új Android alkalmazást a com.reactnativefirebase csomagnévvel
- Töltse le számítógépére a következő lépésben létrehozott konfigurációs fájlt ( GoogleService-Info.plist iOS-hez és google-services.json Android-hoz)
A Firebase lehetővé teszi háttér nélküli alkalmazások készítését. Ez egy olyan termék, amely a Google Cloud tetején fut, és lehetővé teszi a fejlesztők számára, hogy web- és mobilalkalmazásokat építsenek saját szerverek nélkül.
Ez sok időt takarít meg, mivel nem kell semmilyen háttérprogram kódot írni. Szintén nagyon skálázható, a Google infrastruktúrája támogatja.
A Firebase-ben mindent elraktározhat, ami az alkalmazásához szükséges - a felhasználókat, az adatokat, a fájlokat, az értesítési tokeneket stb. Mindezeket az információkat a React Native-val kompatibilis Firebase SDK-k révén elérhetővé teszik a mobil kliensek. . Ez azt jelenti, hogy a háttérprogrammal való összes interakció elvonatkozik és be van zárva az SDK-ba, így a mobil fejlesztőknek nem kell aggódniuk az API-hívások, az adatok elemzése, a socketek kezelése stb. Miatt.
2. Hozzon létre és konfiguráljon egy új React Native alkalmazást
A React Native Firebase alkalmazást kompatibilisvé tesszük mind az Expo CLI, mind a React Native CLI-vel.
Egyelőre az Expo-t fogjuk használni, mivel ez megkönnyíti az újonnan érkezők számára az alkalmazások előnézetét. De nem használunk Expo-specifikus könyvtárakat, így az src- kód egyszerűen használható bármely React Native alkalmazásban, függetlenül annak állványaitól.
A Firebase Web SDK-t fogjuk használni, amely kompatibilis mind az Expo, mind pedig a React Native CLI-vel, és amelyet a Google közvetlenül támogat.
Ha ehelyett reak-native-firebase-t akar használni, nyugodtan telepítse és konfigurálja ezt (a kód továbbra is ugyanaz lesz). De ne feledje, hogy néhány okból nem javasoljuk:
- a Google nem támogatja közvetlenül, ezért fenntartása sokkal nehezebb lesz, mivel ez egy extra réteg, amely hibákat okozhat, és
- az Expo-val sem működik, amely sok fejlesztő számára üzletkötő lehet.
Az alábbi lépéseket a fejlesztői környezet beállításának hivatalos React Native dokumentációja is tartalmazza.
- Telepítse az Expo CLI-t
A terminálon egyszerűen fuss
npm install -g expo-cli
- Hozzon létre egy új React Native alkalmazást a futtatással
expo init react-native-firebase
A sablonhoz válassza a Felügyelt munkafolyamat - üres lehetőséget
- Indítsa el az alkalmazást futtatással
yarn ios // or yarn android
Ez egy QR-kódot is megad Önnek, amelyet beolvashat az iOS-es Kamera alkalmazással vagy az Android-on található Expo alkalmazással.
Ez nagyszerű. Most van egy új React Native alkalmazásunk, amely iOS-en és Androidon is fut. Kezdjük összekapcsolni Firebase háttérképével.
- Adja hozzá a Firebase SDK-t a React Native projekthez
yarn add firebase
- Futtatással adja hozzá a React Native Navigation könyvtárat
yarn add @react-navigation/native && yarn add @react-navigation/stack && expo install react-native-gesture-handler react-native-reanimated react-native-screens react-native-safe-area-context @react-native-community/masked-view
- Adjon hozzá különféle felhasználói felület-összetevőket és csomagokat, amelyeket használni kíván a projektben
yarn add react-native-keyboard-aware-scroll-view base-64
Hozzon létre egy Firebase konfigurációs fájlt
mkdir src src/firebase && touch src/firebase/config.js
Adja hozzá a firebase konfigurációját az src / firebase / config.js fájlba:
You can get all this information from Firebase Console -> Project Settings

3. Create the Folder Structure and Set Up Routes and Navigation
- Create the folder structure by running
mkdir src/screens src/screens/LoginScreen src/screens/RegistrationScreen src/screens/HomeScreen
- Create the files structure by running
touch src/screens/index.js src/screens/LoginScreen/LoginScreen.js src/screens/LoginScreen/styles.js src/screens/RegistrationScreen/RegistrationScreen.js src/screens/styles.js src/screens/HomeScreen/HomeScreen.js src/screens/HomeScreen/styles.js
- Add this code to src/screens/index.js
export { default as LoginScreen } from './LoginScreen/LoginScreen' export { default as HomeScreen } from './HomeScreen/HomeScreen' export { default as RegistrationScreen } from './RegistrationScreen/RegistrationScreen'
Don’t worry if the project is broken! Everything will make sense in a little while.
- Set up the routes & navigators
Override App.js file with the following code snippet:
4. Implement the UI
Now that we have the scaffold of the app, let’s go ahead and implement the UI components of all screens. We’re not going into the details of flex layout and React Native styling, since that is outside the scope for this tutorial. We’re going to focus mostly on React Native Firebase integration.
Simply override the files as follows:
- src/LoginScreen/LoginScreen.js
- src/LoginScreen/styles.js
- src/RegistrationScreen/RegistrationScreen.js
- src/RegistrationScreen/styles.js
- src/HomeScreen/HomeScreen.js
- src/HomeScreen/styles.js
At this point, your app should run properly and display the following screens (UI only):

You can switch between the two screens by tapping the links buttons in the footer.
Now that we have a beautiful UI for login and sign up, let’s see how we can integrate our React Native (and Expo) app with Firebase.
5. React Native Firebase — Registration
Let’s start with creating a new account with Firebase Auth, since naturally login comes after. For this, we are going to add the Firebase logic for creating a new account with email & password in RegistrationScreen.js, by implementing the onRegisterPress method as follows:
In the account creation flow above, we do a few important things:
- We call Firebase Auth’s createUserWithEmailAndPassword API (line 13), which creates a new account that will show up in Firebase Console -> Authentication table.
- If the account registration was successful, we also store the user data in Firebase Firestore (line 24). This is necessary for storing extra user information, such as full name, profile photo URL, and so on, which cannot be stored in the Authentication table.
- If registration was successful, we navigate to the Home Screen, by passing in the user object data as well.
- If any error occurs, we simply show an alert with it. Errors can be things such as no network connection, password too short, email invalid, and so on.
Reload your app and test the registration. If you successfully created one account, check that it shows up in Firebase Console ->Authentication:

6. React Native Firebase — Login
Now that we are able to create new accounts, let’s implement the login functionality. Firebase SDK takes care of all the authorization and authentication steps needed for a secure login.
Open LoginScreen.js, import firebase and complete the onLoginPress method:
Reload your app and go ahead and login with an existing account. The app should take you to the home screen if the credentials were correct, or it will alert you with an error if anything went wrong.
7. Persist Login Credentials
You’ll notice that if you quit the app and open it again, it will show the login screen again. For a good user experience, we’d want to land all logged in users on the Home screen. No one wants to type in their login credentials every time they want to use an app.
This is also known as persistent login. Fortunately, Firebase SDK takes care of this for us, dealing with all the security concerns. Persistent login is enabled by default in Firebase, so all we need to do is fetch the currently logged in user.
Open App.js and let’s implement the persistent login feature:
onAuthStateChanged returns the currently logged in user. We then fetch all the extra user data that we stored in Firestore, and set it on the current component’s state. This will re-render the app component, which will display the Home screen.
Notice how we call this the first time the app loads by leveraging the useEffect hook.
8. Writing and Reading Data from Firebase Firestore
We’ve already used Firestore above, for saving extra information on our users (the full name). In this dedicated section, we’re going to see how we can write data to Firestore, and how we can query it.
We’ll also cover how to observe (listen to) changes in the Firestore collection and have those be reflected on the screen, in real-time. These can be very helpful in real-time apps, such as a React Native Chat.
To simplify, we are going to save some text items into a Firestore collection named “entities”. Think of these as tasks, posts, tweets, anything you want. We’ll create a simple file that adds a new entity and we’ll also list all the entities that belong to the currently logged in user. Additionally, the list will be updated in real-time.
- Implement HomeScreen.js by rewriting it to the code below
- Style the home screen, by overriding HomeScreen/styles.js to:
- Reload the app and observe the new home screen. Type in some text and press the Add button
- Nothing happened.
- Create an index on the entities Firestore collection
You’ll notice that the list of entities is not rendered. If you check out the logs, you’ll see an warning about “The query requires an index”, followed by a long URL:

This informs us that we can’t query the entities table by authorID and sort the data by createdAt in descending order, unless we create an index. Creating an index is actually really easy — simply click on that URL and then click the button:

- Reload the app again
Now everything works as expected:
- The app lists all the entities in the entities collection, in descending creation order
- Adding a new entity works fine
- The list updates in real-time (try deleting an entry directly in the database, or adding a new one directly from the app)
This is how your Firestore database looks like now:

This is how you read and write from Firestore in React Native. Let’s move forward to the last section.
Play around with the app, by adding new entities. This is the final project:

Conclusion
Firebase makes it really easy to add authentication and database support to any React Native app. Firebase SDK is extremely powerful, supporting a lot of common reading and writing database patterns.
In addition to React Native, Firebase SDK provides support for a lot of other languages, such as Swift, Kotlin or Flutter. Check out those links for similar Firebase starter kits in various languages.
We’ve showcased the most basic ones in this React Native Firebase tutorial. In the next series, we’ll cover more advanced features, such as Firebase Storage (file upload) and push notifications.
Ha tetszett ez az oktatóanyag, kérem, adjon nekem egy csillagot a Github repón, és ossza meg ezt a közösségével. Még több ingyenes React Native projektet nézhet meg az Instamobile-on. Egészségére!