Navigating Between Screens with React Native

Tiempo de lectura: 3 minutos Reading Time: 3 minutes In React Native, each screen is a stackable object that is added to the top of the stack. This means that if we open a screen and then close it, the screen that appears is the previously opened screen. To manage screens, we will use the react-navigation plugin (https://reactnative.dev/docs/navigation). First, we … Read more