A React Native application demonstrating stack navigation using React Navigation and Expo.
- Name: Delwin P. Vidallon
- Student ID: 202302248
- Course: Mobile Application Development
- Date: 02/12/2025
- Stack navigation between screens
- Home and Details screens
- Navigation buttons and gestures
- Android emulator support
- React Native 0.76.3
- Expo ~52.0.0
- React Navigation 6.x
- JavaScript/ES6
```bash npm install ```
```bash
npm start
npm run android
npm run ios
npm run web ```
``` ├── App.js # Main app with navigation ├── screens/ │ ├── HomeScreen.js # Home screen │ └── DetailsScreen.js # Details screen ├── package.json # Dependencies ├── app.json # Expo configuration └── README.md # Documentation ```
Adding a new page was kind of a challenge. I just forgot to add it to the main file App.js
I learned the basics of react applications. Maybe next time I should be able to add something more complex to my future react applications haha.


