The Search Tab
Learn about the code that we will write for the movie search page.
The application page structure
As described earlier in this case study, our application utilizes the Tabs project interface and consists of the following pages:
- Search
- Saved
- Favorites
So far, we have covered the development of the custom services and components that the application will use to deliver core functionality (such as rendering movie data, saving and retrieving favorited movies, and so on).
The search page
We’ll now focus on implementing the logic and ...