🍔 A flutter app that shows food categories with various meals in each category and full description for each meal
- Navigation
- Flutter Navigator is just a stack with special methods like (pushName, pushReplacement, ...)
- Screens/Routes are just widgets
- Passing Data
- Passing data between pages through arguments
- Passing data back via future (like promises in JS)
- Tabs
- Adding tabs in the AppBar or at the bottom of the page
- Switching between tabs without popping from the stack
- Drawers
- Drawers allow you to switch between different stacks
- Edit deleting meal logic with state management instead of passing data back and forth.