React Native Global Stylesheet: How to Standardize Your Appโ€™s UI

0
36

React Native Global Stylesheet: How to Standardize Your Appโ€™s UI

๐Ÿš€ Tutorial #6 โ€“ Step-by-Step Guide for a Scalable Design


๐Ÿ“Œ SEO Optimization

SEO Title:

“React Native Global Styles: How to Standardize Your Appโ€™s UI”

Short Meta Description (Max 60 characters):

“Create a global stylesheet in React Native for better UI.”

Full Meta Description:

“Learn how to implement a global stylesheet in React Native to create a consistent and maintainable UI across all screens. Improve your appโ€™s scalability with reusable styles.”

Keywords:

React Native global styles, Expo Router styling, React Native design consistency, React Native reusable styles, UI scalability in React Native


๐Ÿ“Œ Introduction

In this tutorial, we will:
โœ… Create a global stylesheet (globalStyles.ts) to manage UI styling across the app.
โœ… Refactor all screens (index.tsx, game.tsx, wordSearch.tsx) to use the new styles.
โœ… Explain why a global stylesheet is better than defining styles per page.

By the end, your app will have a consistent design thatโ€™s easier to maintain and scale! ๐Ÿš€


๐Ÿ“Œ Step 1: Why Use a Global Stylesheet?

๐Ÿ”น Problem:

Right now, every screen has its own separate styles, making it:
โŒ Hard to maintain โ†’ Changes must be made in multiple files.
โŒ Inconsistent โ†’ Some pages might use slightly different fonts, margins, or colors.
โŒ Less efficient โ†’ Repeated code wastes space and increases complexity.

โœ… Solution: Global Styles

A global stylesheet solves these problems by:
โœ”๏ธ Centralizing all styles in one file (globalStyles.ts).
โœ”๏ธ Ensuring UI consistency across all screens.
โœ”๏ธ Making updates easier (change one file instead of multiple screens).
โœ”๏ธ Reducing redundancy and improving performance.


๐Ÿ“Œ Step 2: Create the Global Stylesheet

๐Ÿ“ Location: src/globalStyles.ts

๐Ÿ”น New globalStyles.ts

typescript
import { StyleSheet } from "react-native";

export const globalStyles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
padding: 20,
backgroundColor: "#F5F5F5",
},
title: {
fontSize: 24,
fontWeight: "bold",
marginBottom: 20,
color: "#333",
},
button: {
marginVertical: 10,
width: "80%",
},
buttonText: {
fontSize: 18,
textAlign: "center",
padding: 10,
},
backButton: {
marginTop: 20,
backgroundColor: "#CCC",
padding: 10,
borderRadius: 5,
},
});

๐Ÿ” Explanation:

  • container โ†’ A default layout used across all screens.
  • title โ†’ A consistent text style for screen titles.
  • button โ†’ A standard button layout.
  • buttonText โ†’ Uniform button text styling.
  • backButton โ†’ A consistent “Back” button style.

๐Ÿ“Œ Step 3: Refactor Screens to Use Global Styles

Now, letโ€™s replace the old styles in all screens with globalStyles.ts.


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

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

๐Ÿ”น Updated index.tsx

typescript
import { View, Text, Button } from "react-native";
import { useRouter } from "expo-router";
import { globalStyles } from "@/src/globalStyles";

export default function HomeScreen() {
const router = useRouter();

return (
<View style={globalStyles.container}>
<Text style={globalStyles.title}>Main Menu</Text>
<View style={globalStyles.button}>
<Button title="Start Game" onPress={() => router.push("/game")} />
</View>
<View style={globalStyles.button}>
<Button title="Options" onPress={() => router.push("/options")} />
</View>
<View style={globalStyles.button}>
<Button title="Exit Game" onPress={() => alert("Exit functionality coming soon!")} color="red" />
</View>
</View>

);
}


๐Ÿ“Œ Step 3.2: Update the Game Selection Screen (game.tsx)

๐Ÿ“ Location: app/game.tsx

๐Ÿ”น Updated game.tsx

typescript
import { View, Text, Button } from "react-native";
import { useRouter } from "expo-router";
import { globalStyles } from "@/src/globalStyles";

export default function GameSelection() {
const router = useRouter();

return (
<View style={globalStyles.container}>
<Text style={globalStyles.title}>Select Game!</Text>
<View style={globalStyles.button}>
<Button title="Word Search" onPress={() => router.push("/wordSearch")} />
</View>
<View style={globalStyles.button}>
<Button title="Crossword Puzzle Game" onPress={() => alert("Crossword coming soon!")} />
</View>
<View style={globalStyles.backButton}>
<Button title="Go Back" onPress={() => router.back()} color="gray" />
</View>
</View>

);
}


๐Ÿ“Œ Step 3.3: Update the Options Screen (options.tsx)

๐Ÿ“ Location: app/options.tsx

๐Ÿ”น Updated options.tsx

typescript
import { View, Text, Button } from "react-native";
import { useRouter } from "expo-router";
import { globalStyles } from "@/src/globalStyles";

export default function OptionsScreen() {
const router = useRouter();

return (
<View style={globalStyles.container}>
<Text style={globalStyles.title}>Options</Text>
<View style={globalStyles.backButton}>
<Button title="Back" onPress={() => router.back()} />
</View>
</View>

);
}


๐Ÿ“Œ Step 3.4: Update the Word Search Screen (wordSearch.tsx)

๐Ÿ“ Location: app/wordSearch.tsx

๐Ÿ”น Updated wordSearch.tsx

typescript
import { View, Text, Button } from "react-native";
import { useRouter } from "expo-router";
import { globalStyles } from "@/src/globalStyles";

export default function WordSearch() {
const router = useRouter();

return (
<View style={globalStyles.container}>
<Text style={globalStyles.title}>Word Search Game</Text>
<View style={globalStyles.backButton}>
<Button title="Back to Game Selection" onPress={() => router.back()} />
</View>
</View>

);
}


๐Ÿ“Œ Final Steps

1๏ธโƒฃ Restart the app:

bash
npx expo start

2๏ธโƒฃ Navigate between:

  • Main Menu โ†’ Game Selection โ†’ Word Search
  • Main Menu โ†’ Options 3๏ธโƒฃ Verify all screens have a consistent UI.

๐Ÿš€ Now your app uses a global stylesheet, making styling easier and scalable! ๐ŸŽฎ


๐ŸŽฏ Whatโ€™s Next?

In Tutorial #7, we will: โœ”๏ธ Start building the actual Word Search game!
โœ”๏ธ Load words dynamically from Firebase.

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