React Native Game Menu: Creating a Game Selection Screen

0
42

React Native Game Menu: Creating a Game Selection Screen

๐Ÿš€ Tutorial #5 โ€“ Step-by-Step Guide with Expo Router & Firebase


๐Ÿ“Œ SEO Optimization

SEO Title:

“React Native Game Menu: Implement a Game Selection Screen”

Short Meta Description (Max 60 characters):

“Create a game selection menu in React Native with Firebase.”

Full Meta Description:

“Learn how to create a game selection screen in React Native using Expo Router. Implement Word Search, Crossword Puzzle buttons, navigation, and proper Firebase authentication tracking.”

Keywords:

React Native game menu, Expo Router navigation, React Native game selection, Firebase authentication React Native, React Native word puzzle game


๐Ÿ“Œ Introduction

In this tutorial, we will: โœ… Restore authentication state tracking in _layout.tsx.
โœ… Create a Game Selection Scene (game.tsx) with:

  • ๐ŸŽฎ Title: “Select Game!”
  • ๐Ÿงฉ Buttons: “Word Search,” “Crossword Puzzle Game,” and “Go Back.”
    โœ… Navigate to wordSearch.tsx when clicking “Word Search.”
    โœ… Add a new “Options” page (options.tsx) โ†’ Includes a “Back” button.
    โœ… Prepare the “Exit Game” button โ†’ Will close the app (for now, keep it empty).
    โœ… Ensure the bottom navigation bar does not block any elements (keeping it for now).

By the end of this tutorial, your app will have a fully functional game selection screen integrated with Firebase authentication and Expo Router navigation. ๐Ÿš€


๐Ÿ“Œ Step 1: Review the Updated _layout.tsx

Before continuing, we need to make sure our navigation system is correctly tracking authentication.

๐Ÿ“ Final, Tested _layout.tsx

typescript
import { DarkTheme, DefaultTheme, ThemeProvider } from '@react-navigation/native';
import { useFonts } from 'expo-font';
import { Stack, useRouter } from 'expo-router';
import * as SplashScreen from 'expo-splash-screen';
import { StatusBar } from 'expo-status-bar';
import { useEffect, useState } from 'react';
import 'react-native-reanimated';
import { listenForAuthChanges } from '@/src/firebaseConfig';
import { useColorScheme } from '@/hooks/useColorScheme';
import { Platform } from "react-native";
export default function Layout() {
const [user, setUser] = useState(null);
const router = useRouter();useEffect(() => {
const unsubscribe = listenForAuthChanges((user) => {
setUser(user);
if (user) {
router.replace(“../(tabs)/index”); // Redirect to home if logged in
} else {
router.replace(“/login”); // Redirect to login if not logged in
}
});

return () => unsubscribe(); // Clean up the listener
}, []);

return <Stack />;
}

๐Ÿ” Explanation:

  • listenForAuthChanges() โ†’ Listens for authentication state changes.
  • router.replace() โ†’ Ensures that users are redirected correctly based on login status.
  • return () => unsubscribe(); โ†’ Cleans up the listener to prevent memory leaks.

โœ… Now, authentication tracking is restored, and navigation is working!


๐Ÿ“Œ Step 2: Create the Game Selection Screen

๐Ÿ“ Location: app/game.tsx

Now, letโ€™s create the game selection screen.

๐Ÿ”น New game.tsx

typescript
import { View, Text, Button, StyleSheet } from "react-native";
import { useRouter } from "expo-router";
export default function GameSelection() {
const router = useRouter();return (
<View style={styles.container}>
<Text style={styles.title}>Select Game!</Text>
<Button title=“Word Search” onPress={() => router.push(“/wordSearch”)} />
<Button title=“Crossword Puzzle Game” onPress={() => alert(“Crossword coming soon!”)} />
<Button title=“Go Back” onPress={() => router.back()} color=”gray” />
</View>

);
}

const styles = StyleSheet.create({
container: { flex: 1, justifyContent: “center”, alignItems: “center”, padding: 20 },
title: { fontSize: 24, fontWeight: “bold”, marginBottom: 20 }
});

๐Ÿ” Explanation:

  • router.push("/wordSearch") โ†’ Navigates to the Word Search game.
  • router.back() โ†’ Takes the user back to the main menu.
  • The Crossword button is a placeholder for now.

๐Ÿ“Œ Step 3: Create the Word Search Game Screen

๐Ÿ“ Location: app/wordSearch.tsx

๐Ÿ”น New wordSearch.tsx

typescript
import { View, Text, Button, StyleSheet } from "react-native";
import { useRouter } from "expo-router";
export default function WordSearch() {
const router = useRouter();return (
<View style={styles.container}>
<Text style={styles.title}>Word Search Game</Text>
<Button title=“Back to Game Selection” onPress={() => router.back()} color=”gray” />
</View>

);
}

const styles = StyleSheet.create({
container: { flex: 1, justifyContent: “center”, alignItems: “center”, padding: 20 },
title: { fontSize: 24, fontWeight: “bold”, marginBottom: 20 }
});

๐Ÿ” Explanation:

  • The Word Search screen is currently a placeholder.
  • Users can go back to the Game Selection screen with the Back button.

๐Ÿ“Œ Step 4: Create the Options Screen

๐Ÿ“ Location: app/options.tsx

๐Ÿ”น New options.tsx

typescript
import { View, Text, Button, StyleSheet } from "react-native";
import { useRouter } from "expo-router";
export default function OptionsScreen() {
const router = useRouter();return (
<View style={styles.container}>
<Text style={styles.title}>Options</Text>
<Button title=“Back” onPress={() => router.back()} />
</View>

);
}

const styles = StyleSheet.create({
container: { flex: 1, justifyContent: “center”, alignItems: “center”, padding: 20 },
title: { fontSize: 24, fontWeight: “bold”, marginBottom: 20 }
});

๐Ÿ” Explanation:

  • The Options screen currently only has a Back button.
  • Future updates will add settings and configurations.

๐Ÿ“Œ Step 5: Update the Main Menu (index.tsx)

๐Ÿ“ Location: app/(tabs)/index.tsx

๐Ÿ”น Updated index.tsx

typescript
import { View, Text, Button, StyleSheet } from "react-native";
import { useRouter } from "expo-router";
export default function HomeScreen() {
const router = useRouter();return (
<View style={styles.container}>
<Text style={styles.title}>Main Menu</Text>
<Button title=“Start Game” onPress={() => router.push(“/game”)} />
<Button title=“Options” onPress={() => router.push(“/options”)} />
<Button title=“Exit Game” onPress={() => alert(“Exit functionality coming soon!”)} color=”red” />
</View>

);
}

๐Ÿ” Explanation:

  • “Start Game” โ†’ Navigates to game.tsx.
  • “Options” โ†’ Navigates to options.tsx.
  • “Exit Game” โ†’ Placeholder for closing the app.

๐Ÿ“Œ Final Steps

1๏ธโƒฃ Restart the app:

bash
npx expo start

2๏ธโƒฃ Test:

  • Main Menu โ†’ Game Selection โ†’ Word Search
  • Main Menu โ†’ Options 3๏ธโƒฃ Ensure:
  • Navigation works properly.
  • The bottom bar doesnโ€™t block any UI elements.

๐Ÿš€ Now your app has a fully functional Game Selection screen that works with authentication! ๐ŸŽฎ


๐ŸŽฏ Whatโ€™s Next?

In Tutorial #6, we will:

โœ… Creating a global stylesheet for the entire app.
โœ… Refactoring all screens to use this new global stylesheet.
โœ… Explaining why a global stylesheet is better than defining styles per page.
โœ… Ensuring consistency across all screens with reusable styles.

๐Ÿ”ฅ Let me know if everything works perfectly now! ๐Ÿš€