Navigating Between Screens with React Native

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

Creating a Component in React Native

Creating a Component in React Native

Tiempo de lectura: 3 minutos Reading time: 3 minutes React Native works with components. What does this mean? It means that each element represents an object with its view, properties, and methods. An object is a black box where you input an entry and get an output, regardless of its internal contents. I’m going to explain how to create a … Read more