Link Search Menu Expand Document

Mini-Project 2: iMDB

Table of contents

  1. Project Description
  2. App Requirements
  3. Starter Code
  4. Demo
  5. Submission

Project Description

In their pursuit of a mobile app development agency, executives at iMDB stumbled upon MDB! They’ve hired you to create their mobile app for them.

App Requirements

  1. Display a list of movies, with the movie poster image, title, and any other information you think is important.
  2. Allow the user to search for a specific movie through a search bar.
  3. If a user taps on a movie, take them to a screen that showcases the movie in detail. Include all attributes about the movie from the dataset.
  4. Include a “Filter” button in the navigation bar that takes a user to a screen that allows users to filter by actor in a multiple-select fashion.

Make sure to install the VSCode Prettier extension to format and auto-style your code. The keyboard shortcut CMD/CTRL/OPTION-SHIFT-F does this for you!

Starter Code

If you’re a member of MDB, please use the invite link provided by your instructor to create your own copy of the starter code. For all others, the starter code is available as a template here.

git clone [YOUR_REPOSITORY_LINK_HERE]
cd reactnative-mp2
yarn install
expo install
expo start

This project requires you to set up a navigation stack for your app from scratch. Hints are provided in the starter code, along with links to relevant documentation on how to do this.

You will need to make changes to the following files:

  • MovieListScreen.jsx - holds the main screen (list of movies)
  • MovieDetailScreen.jsx - holds the detail screen (info about a movie)
  • MovieFilterScreen.jsx - holds the filter screen
  • App.js - serves as the entry point of the application; holds app navigation stack

The list of movies is contained within assets/movies.json.

Demo

Submission

To submit your project, simply commit and push your changes to your personal project repository. We encourage you to commit frequently, so it’s easy to revert to a prior commit if needed.

git add .
git commit -m "all features working"
git push origin master

Additionally, please submit a screen recording of your working app here: https://mdb.dev/submit-project/.