π A Complete Guide to User Session Management in Expo Router
π SEO Title:
“React Native Firebase Authentication: How to Keep Users Logged In”
π Short Meta Description (Max 60 characters):
“Keep users logged in with Firebase in React Native.”
π Full Meta Description:
“Learn how to implement Firebase Authentication in React Native with Expo Router. This step-by-step guide explains session management, logout handling, and user redirection.”
π Keywords:
React Native authentication, Firebase session management, keep users logged in React Native, Firebase auth persistence, React Native login, Expo Router authentication
π Introduction
One of the most important features of any mobile app is user authentication. But what happens when a user closes the app and reopens it? Should they log in again every time? No!
Using Firebase Authentication in React Native, we can keep users logged in and automatically redirect them to the correct screen.
In this tutorial, weβll implement: β
Persistent user authentication (stay logged in after closing the app).
β
Automatic redirection (navigate based on login status).
β
Logout handling (hide the logout button if not logged in).
By the end of this guide, your React Native app will have full user session management! π
π Step 1: Install Firebase & Navigation Dependencies
Before we begin, make sure you have Firebase Authentication and React Navigation installed.
Run this command in your terminal:
π What Are These Dependencies?
firebase
β Firebase SDK for authentication.@react-navigation/native
β Core navigation library.@react-navigation/stack
β Enables navigation between screens.- Other packages β Required for React Native navigation and gestures.
π Step 2: Modify firebaseConfig.ts
to Track User Session
We need to listen for authentication state changes in Firebase.
π Location: src/firebaseConfig.ts
πΉ Updated firebaseConfig.ts
π Explanation:
onAuthStateChanged(auth, callback)
β Tracks if a user logs in or out.listenForAuthChanges()
β Calls the callback function when auth state changes.
π Step 3: Automatically Redirect Users Based on Login Status
Now, we will check if a user is logged in or not when they open the app.
π Location: app/_layout.tsx
πΉ Modify _layout.tsx
π Explanation:
useEffect()
β Runs once when the app starts.listenForAuthChanges()
β Calls Firebase to track login/logout state.router.replace()
β Redirects:- β
If logged in β Go to
index.tsx
(home screen). - β If not logged in β Go to
login.tsx
.
- β
If logged in β Go to
π Step 4: Show/Hide Logout Button Based on User Status
π Location: app/(tabs)/index.tsx
Now, we will modify the home screen so that:
- β The logout button only appears if the user is logged in.
- β If not logged in, the button is hidden.
πΉ Modify index.tsx
π Explanation:
useState(null)
β Stores the logged-in user.useEffect()
β Listens for auth state changes.!user ? (...) : (...)
β- If logged in: Show only the Logout button.
- If not logged in: Show Login and Signup buttons.
π Now, the Logout button will ONLY show when a user is logged in!
π Step 5: Restart and Test
Run your app again:
β Test These Scenarios:
- Open the app β If logged in, you should see the home screen with Logout.
- Close and reopen the app β You should still be logged in.
- Click “Logout” β You should return to the login screen, and the Logout button should disappear.
- Try logging in again β You should see the Logout button after login.
π Now your app correctly handles session management! π
π― Whatβs Next?
Now that authentication is fully functional, we will:
βοΈ Start building the word puzzle game UI.
βοΈ Display the playerβs username after login.
βοΈ Connect Firebase Realtime Database to store player progress.
Stay tuned for Part 4! π₯
π‘ Got any questions? Drop a comment below! π