// the find
Tarikul711/flutter-food-delivery-app-ui
The food ordering & delivery application designed based on the real-life scenario. Anyone can use this code on their own purpose. If you are interested please make your contribution to the code.
A Flutter UI-only demo for a food delivery app, covering home, food details, cart, and auth screens. It's a static mockup with hardcoded assets — no backend, no state management, no real functionality. Useful as a starting point for visual layout ideas, nothing more.
The screen coverage is decent for a UI kit: home, detail, cart, login/signup, and bottom nav all exist as separate page files. Widget decomposition is reasonable — TopMenus, BestFoodWidget, PopularFoodsWidget are split out rather than dumped into one monolithic build method. Custom page transitions (ScaleRoute, RotationRoute) are a nice touch that most UI demos skip. Works on both Android and iOS out of the box since it's pure Flutter.
The README says 'this application is not completed yet' and last commit was August 2024 — it has been abandoned mid-build. There is zero state management: no Provider, no Bloc, no Riverpod, just StatelessWidgets with static data. All food data is hardcoded in assets with no abstraction layer, so wiring a real API would mean rewriting most of the page files. 597 forks and 1200 stars suggest people copy this as a starting point, but anyone doing so will hit a wall immediately when they try to add a cart total or a real login flow.