React Native

How do you navigate between screens in a React Native app?

Medium
10
Added
You can use the React Navigation library to navigate between screens in a React Native app. It provides a flexible and customizable navigation system.

Solution Code

React Native
-- Example Code --
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";

const Stack = createStackNavigator();

function App() {
  return (
    <NavigationContainer>
      <Stack.Navigator>
        <Stack.Screen name="Home" component={HomeScreen} />
        <Stack.Screen name="Details" component={DetailsScreen} />
      </Stack.Navigator>
    </NavigationContainer>
  );
}
Explanation
This code sets up a basic navigation system using React Navigation.

Guided Hints

{'hint': 'Use the Stack Navigator for simple navigation.'}
{'hint': 'Install React Navigation library first.'}