https://github.com/flutterwiz/flutter_video_feed
A Flutter app showcasing a smooth, TikTok-style vertical video feed with MVVM architecture and LRU-based video caching for optimal performance.
https://github.com/flutterwiz/flutter_video_feed
flutter flutter-video reels video video-feed
Last synced: 5 months ago
JSON representation
A Flutter app showcasing a smooth, TikTok-style vertical video feed with MVVM architecture and LRU-based video caching for optimal performance.
- Host: GitHub
- URL: https://github.com/flutterwiz/flutter_video_feed
- Owner: FlutterWiz
- License: mit
- Created: 2025-02-19T09:42:07.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-04-15T18:58:35.000Z (6 months ago)
- Last Synced: 2025-05-08T17:53:54.426Z (5 months ago)
- Topics: flutter, flutter-video, reels, video, video-feed
- Language: Dart
- Homepage:
- Size: 399 KB
- Stars: 102
- Watchers: 3
- Forks: 32
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flutter Video Feed
**Flutter Video Feed** is an open-source Flutter project that demonstrates how to build a performant social media-style video feed similar to TikTok, Instagram Reels, or YouTube Shorts. The project showcases video handling, memory management, and smooth scrolling using MVVM architecture.
To keep performance sharp and resource usage minimal, the project uses an LRU (Least Recently Used) caching strategy for video preloading and disposal.
> ⭐️ If you find this project useful, consider giving it a star on GitHub — it helps others discover it too!
## 🎥 Showcase (GIF)

## 🏗 Project Structure
The project follows a clean architecture approach:
```
lib/
├─ core/
│ ├─ constants/
│ ├─ di/
│ ├─ init/
│ ├─ interfaces/
├─ data/
│ ├─ repository/
├─ domain/
│ ├─ models/
├─ presentation/
│ ├─ views/
│ ├─ blocs/
│ ├─ design_system/
│ ├─ l10/
├─ main.dart
```## 📚 Tutorials
* **YouTube Video** 🎥
* https://www.youtube.com/watch?v=oQ_Izz1Q4iY
## 🤝 Contributing
Contributions are welcome! Please feel free to submit a Pull Request.