// the find
JideGuru/FlutterFoodybite
Flutter representation of a Restaurant app UI.
A static UI demo of a restaurant discovery app built in Flutter, ported from an Uplabs design. Two real screens, hardcoded data, no backend. This is a portfolio/learning piece, not a starting point for a real app.
The widget decomposition is clean — slide_item, category_item, trending_item are properly extracted rather than dumped into one giant build() method. The visual fidelity to the original Uplabs design is high, which makes it useful as a reference for translating Figma/design specs into Flutter layouts. Cross-platform scaffold (Android + iOS) is set up correctly with no obvious platform-specific hacks.
All data is hardcoded in lib/util/ — restaurants.dart, friends.dart, etc. are just static lists, so there is nothing to learn about state management or API integration. The test suite is the default Flutter widget_test.dart stub; nothing is actually tested. Last meaningful commit was 2024 and the Flutter/Dart SDK versions in pubspec.yaml are almost certainly stale enough to require upgrades before it builds cleanly. With only two screens and no navigation beyond bottom tabs, it covers maybe 20% of what a real restaurant app would need.