This React Native application allows users to search for restaurants using the Yelp API, groups them by cost, and displays an overview of each restaurant. Users can tap on a restaurant to view more photos.
This project was another step in my journey to deepen my understanding of React Native.
Features:
- Search for restaurants using the Yelp API.
- Group restaurants by cost (e.g.,
$, $ $, $$$). - Display an overview of each restaurant (name, rating, image, etc.).
- View more photos of a restaurant when tapped.
Note: This app focuses on learning and implementing core React Native concepts and API integration.
- Clone the repository
- Install dependencies: `npm install`
- Start the app: `npm start`
- React Native
- Yelp API
- Axios
- Custom Hooks
- React Navigation
- Fetching and handling data from a third-party API (Yelp).
- Implementing navigation with React Navigation.
- Creating and using custom hooks for data fetching.
- Working with asynchronous operations in React Native.