An app for movie recommendations and categorizing movies by genre using React Native and the TMDB API.
- Display Popular Movies on the home screen
- Select a movie Genre and display movies in that genre
- View detailed information about each movie, such as synopsis, ratings, and more
git clone https://github.com/your-username/your-repo-name.git
cd your-repo-name
npm install
- For iOS
npx react-native run-ios
- For andriod
npx react-native run-android
- Sign up at The Movie Database and get your API key.
- Create a .env file in your project:
TMDB_API_KEY=your_api_key_here
- Use the API key in your code:
const TMDB_BASE_URL = 'https://api.themoviedb.org/3';
const API_KEY = process.env.TMDB_API_KEY;