Loading repository dataβ¦
Loading repository dataβ¦
rrifafauzikomara / repository
[Flutter SDK V.1] - π¬ MovieApp is a Flutter application built to demonstrate the use of modern development tools with best practices implementation like Modularization, BLoC, Dependency Injection, Dynamic Theme, Cache, Shimmer, Testing, Flavor, CI/CD, etc.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
This is a normal flutter app. You should follow the instructions in the official documentation. This project uses BLoC (business logic component) to separate the business logic with UI itself. It's recommended to do self-study about it before jumping into the project here. And also on this project uses Modularization approach to separate each feature (core, shared, ui modules). You can do self-study about it in .
# Root Project
.
|
βββ lib # Name of module (default from Flutter).
β βββ launcher # Main Application.
β βββ ui # Activity/View layer.
|
βββ libraries # Name of directory.
βββ core # Name of module.
β βββ bloc # Business logic component.
β βββ di # Dependency injection.
β βββ local # Local data handlers.
β βββ network # Remote data handlers.
β βββ repository # Repository data handlers.
|
βββ dependencies # Name of module (Handle dependency version updates).
|
βββ shared # Name of module.
βββ common # Common shared.
βββ widget # Custom widget which can be used repeatedly.
Dart often involves having to override the == operator.Pub get on each module sequentially starting from dependencies, core, shared, and your root project to generated pubspec.lock file.API_KEY into api_constant.dart file.*.g.dart file in core module. But before you running that, make sure go to core module first using cd command. For example cd libraries and then cd core. Then you can run this command: flutter packages pub run build_runner build --delete-conflicting-outputs.Development
flutter run --flavor development --target=lib/launcher/main-dev.dart
Production
flutter run --flavor production --target=lib/launcher/main-prod.dart
flutter drive --target=test_driver/app.dart --flavor development
Don't forget to follow me, fork and give me a β
MIT License
Copyright (c) [2020] [R Rifa Fauzi Komara]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.