Created
November 14, 2023 04:30
-
-
Save mariozig/d5864c520bad935e22fce799c202e979 to your computer and use it in GitHub Desktop.
Question 2: Build an app to list coffee drinks and display a detail page for each
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2 - Build an app to list coffee drinks and display a detail page for each | |
// API: https://api.sampleapis.com/coffee/hot | |
// Flow: | |
// - App launch | |
// - Land on index screen with listing (fetched from API above). | |
// - Tap on coffee, launch detail screen | |
// - Show detail screen with image, title, ingredients, description | |
// - Back button | |
// | |
// | |
// | |
// | |
// | |
// | |
// Extras: | |
// How to show thumbs in listing? | |
// How to allow user to create new coffees? | |
// Add section for iced drinks (nav) https://api.sampleapis.com/coffee/iced | |
// How to filter list on ingredients? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment