A fully-functional video streaming app like netflix made in Flutter using Custom Nodejs backend.
- Clone the repository.
- cd lavendr_app
- Do
flutter pub get
.
- User can watch live tv.
- User can watch latest Movies and series.
- Get to know about all the upcoming movies/series.
- Flutter - UI toolkit for building beautiful, natively compiled applications for mobile, web, desktop, and embedded devices from a single codebase.
- http - A composable, Future-based library for making HTTP requests.
- Bloc - A predictable state management library that helps implement the BLoC (Business Logic Component) design pattern.
- equatable - A Dart package that helps to implement value based equality without needing to explicitly override == and hashCode.
- yoyo_player - yoyo_player is a video player that allows you to select HLS video streaming by selecting the quality
- lottie - To implement lottie animation.
- nodeJS - Node.js is a JavaScript runtime for server side code.
- express - Fast, unopinionated, minimalist web framework for Node.js.
lib # Root Package
├── data #data layer
| ├── channels #channels
| │ ├── channel #channel model
| │ └── language #language model
│ ├── comming_soon
| | └── comming_soon #comming_soon model
│ ├── movies
| | ├── movies_categories #movies_categories model
| | └── movies #movie model
│ └── series
| ├── episode #episode model
| ├── seasons #season model
| ├── series_categories #series_categories model
| └── series #series model
|
├── domain #connect data layer with ui layer
| └── repositories #single source of truth
| └── network_repo #handel api request
|
├── presentation #ui layer
| ├── bloc #state management
| ├── pages #app screens
| └── widgets #widgets
|
├── utils #utility
| └── constants #contain constants
|
└── main.dart #entry point
This app uses Clean Architecture.
- Web support.
- Android
- IOS