π A Complete Step-by-Step Guide for Beginners
πΉ SEO Title:
“React Native Firebase Authentication: A Beginnerβs Guide with Expo Router”
πΉ SEO Meta Description:
“Learn how to implement Firebase Authentication in a React Native app using Expo Router and TypeScript. This step-by-step guide covers login, signup, and navigation with clear explanations and code snippets.”
π Introduction: What You Will Learn
In Part 1, we set up our React Native app using Expo Router and TypeScript. Now, in Part 2, we will: β
Implement user authentication using Firebase (Login & Signup).
β
Use Expo Router for navigation between screens.
β
Ensure users can register and sign in securely.
By the end of this guide, you will have fully working authentication in your React Native app! π
π Step 1: Install Firebase and Navigation Dependencies
First, we need to install Firebase for authentication and React Navigation for managing screens.
Run this command in your terminal:
π Explanation:
firebase
β Firebase SDK for authentication.@react-navigation/native
β Core navigation library.@react-navigation/stack
β Enables stack-based navigation (like back/forward screens).- Other packages β Required for navigation and gestures in React Native.
π Step 2: Set Up Firebase in firebaseConfig.ts
π Location: src/firebaseConfig.ts
Now, letβs configure Firebase so our app can connect to authentication services.
1οΈβ£ Inside src/
, create a new file called firebaseConfig.ts
.
π Folder Structure:
2οΈβ£ Add this code inside firebaseConfig.ts
:
π Explanation:
initializeApp(firebaseConfig)
β Connects Firebase to our app.getAuth(app)
β Enables Firebase Authentication.export const auth
β This allows us to useauth
in other files.
πΉ Don’t forget to replace "YOUR_API_KEY"
and other values with the correct Firebase credentials from the Firebase Console.
π Step 3: Create the Signup Screen
π Location: app/signup.tsx
Now, we will create a signup screen where users can register with their email and password.
1οΈβ£ Inside app/
, create a new file called signup.tsx
.
π Folder Structure:
2οΈβ£ Add this code inside signup.tsx
:
π Explanation:
useState
Hooks (useState("")
) β Store user input (email & password).useRouter()
β Allows navigation between screens.createUserWithEmailAndPassword(auth, email, password)
β Creates a new Firebase user.router.push("../login")
β Redirects to login after signup.
π Step 4: Create the Login Screen
π Location: app/login.tsx
1οΈβ£ Inside app/
, create a new file called login.tsx
.
π Folder Structure:
2οΈβ£ Add this code inside login.tsx
:
π Step 5: Restart and Test
Run your app:
- Try opening:
http://localhost:19006/login
http://localhost:19006/signup
- Test signing up and logging in.
π― Conclusion
β
You now have Firebase Authentication working in your React Native app!
Next up: Storing user data and building the word puzzle game UI! π
π‘ Drop a comment below if you need help! π₯
By the way, if you need to test in your mobile device, do the following:
π Step 1: Update index.tsx
to Include Navigation
π Location: app/(tabs)/index.tsx
Replace the existing code in index.tsx
with the following updated version:
π Step 2: Why This Fix Works
πΉ useRouter()
β Allows navigation between screens in Expo Router.
πΉ router.push("/login")
β Navigates to the Login screen when the button is pressed.
πΉ router.push("/signup")
β Navigates to the Signup screen when the button is pressed.
Now, when users open the mobile app, they will see two buttons:
βοΈ “Go to Login” β Opens login.tsx
βοΈ “Go to Signup” β Opens signup.tsx
π Step 3: Restart and Test
After updating index.tsx
, restart your app:
Now, try navigating:
β
Open the app on your mobile device.
β
Click “Go to Login” β It should take you to login.tsx
.
β
Click “Go to Signup” β It should take you to signup.tsx
.
π Now your navigation works properly! π