Loading repository data…
Loading repository data…
abidiahmedcom / repository
A high-fidelity, pixel-perfect Glovo clone built with Flutter. Features a clean UI recreation of login, home, explorer, and order tracking screens with smooth Lottie animations and custom typography. Ideal for learning Flutter UI/UX and delivery app architecture.
This project is a UI clone of the popular food & delivery app Glovo, built entirely with Flutter. The goal was to replicate the look and feel of the original Glovo app as closely as possible — while understanding that this is NOT a 100% copy. Some screens, animations, and features have been adapted, simplified, or reimagined to fit the scope of a personal project.
Disclaimer: This project is intended solely for educational and portfolio purposes. It is not affiliated with, endorsed by, or connected to Glovo in any way. No real data, API, or backend services from Glovo are used. All trademarks belong to their respective owners.
| Technology | Purpose |
|---|---|
| Flutter | Cross-platform UI framework |
| Dart | Programming language |
| flutter_svg | SVG rendering |
| Lottie | Animation playback |
| Custom Fonts | Glovo-inspired typography |
# Clone the repository
git clone https://github.com/YOUR_USERNAME/glovo-clone.git
# Navigate to the project directory
cd glovo-clone/glovo
# Install dependencies
flutter pub get
# Run the app
flutter run
glovo/
├── assets/
│ ├── fonts/ # Custom Glovo & WorkSans fonts
│ ├── images/ # PNG assets (categories, restaurants, icons…)
│ ├── lotties/ # Lottie animation files
│ └── svgs/ # SVG vector assets
├── lib/
│ ├── constants/ # App-wide constants (colors, styles…)
│ ├── screens/ # All app screens
│ │ ├── home_screen.dart
│ │ ├── explorer_screen.dart
│ │ ├── orders_screen.dart
│ │ ├── account_screen.dart
│ │ ├── login_screen.dart
│ │ ├── verification_screen.dart
│ │ └── ...
│ ├── widgets/ # Reusable UI components
│ └── main.dart # App entry point
├── screenshots/ # App screenshots
└── pubspec.yaml # Flutter project configuration
This is a UI-only project with no backend integration. Here's what differs:
| Aspect | Original Glovo | This Clone |
|---|---|---|
| Backend / API | Full production backend | ❌ No backend – static UI only |
| Payments | Real payment processing | ❌ Not implemented |
| Live Tracking | Real-time order tracking | ❌ Not implemented |
| Authentication | Real phone/email auth | 🎨 UI only (no real auth) |
| Data | Live restaurant & product data | 📦 Static / mock data |
| All Screens | 50+ screens | 🔢 ~10 key screens recreated |
| Animations | Proprietary animations | 🎞️ Lottie-based alternatives |
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License. See the LICENSE file for details.