A simple daily and weekly meal planning toy app.
The app has three separate screens:
- "Day" screen which shows only the meals for a single day
- "Week" screen which shows all the meals for an entire week
- "Meals list" which allows you to pick a meal and add to a day or week
.
├── application
│ ├── dependency_injection
│ └── providers
├── presentation
│ ├── features
│ ├── shared_widgets
│ ├── styles
│ └── routes
├── utils
└── data
├── data_source
├── models
└── repository- Run
flutter channel stableto make sure you're on the Flutter's stable channel - Run
flutter upgradeto pull latest Flutter updates from the stable branch - Run
flutter packages getfirst to download the dependencies. - Run
flutter runto try it live on running emulator or usb connected device. - Run
flutter build apkto generate APK file. - Run
flutter build iosto package iOS app.
