Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Flutterando/modular
A smart project structure
https://github.com/Flutterando/modular
Last synced: 2 months ago
JSON representation
A smart project structure
- Host: GitHub
- URL: https://github.com/Flutterando/modular
- Owner: Flutterando
- License: other
- Created: 2019-12-08T21:03:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T19:53:49.000Z (4 months ago)
- Last Synced: 2024-10-29T15:05:30.932Z (2 months ago)
- Language: Dart
- Homepage: https://pub.dev/packages/flutter_modular
- Size: 8.82 MB
- Stars: 1,310
- Watchers: 39
- Forks: 253
- Open Issues: 91
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Flutter Modular
Welcome to Flutter Modular!
A smart project structure.
View Example
Β·
Report Bug
Β·
Request Feature
---
Table of Contents
---
##
:memo: About The ProjectLet's find out how to implement a Modular structure in your project.
##
What is Modular?Modular proposes to solve two problems:
- Modularized routes.
- Modularized Dependency Injection.In a monolithic architecture, where we have our entire application as a single module, we design our software in a quick and
elegant way, taking advantage of all the amazing features of Flutterπ. However, producing a larger app in a "monolithic" way
can generate technical debt in both maintanance and scalability. With this in mind, developers adopted architectural strategies to better divide the code, minimizing the negative impacts on the project's maintainability and scalability..By better dividing the scope of features, we gain:
- Improved understanding of features.
- Less breaking changes.
- Add new non-conflicting features.
- Less blind spots in the project's main business rule.
- Improved developer turnover.With a more readable code, we extend the life of the project. See example of a standard MVC with 3 features(Auth, Home, Product):
### A typical MVC
.
βββ models # All models
β βββ auth_model.dart
β βββ home_model.dart
β βββ product_model.dart
βββ controller # All controllers
β βββ auth_controller.dart
β βββ home_controller.dart
β βββ product_controller.dart
βββ views # All views
β βββ auth_page.dart
β βββ home_page.dart
β βββ product_page.dart
βββ core # Tools and utilities
βββ app_widget.dart # Main Widget containing MaterialApp
βββ main.dart # runAppHere we have a default structure using MVC. This is incredibly useful in almost every application.
Let's see how the structure looks when we divide by scope:
### Structure divided by scope
.
βββ features # All features or Modules
β ββ auth # Auth's MVC
β β βββ auth_model.dart
β β βββ auth_controller.dart
β β βββ auth_page.dart
β ββ home # Home's MVC
β β βββ home_model.dart
β β βββ home_controller.dart
β β βββ home_page.dart
β ββ product # Product's MVC
β βββ product_model.dart
β βββ product_controller.dart
β βββ product_page.dart
βββ core # Tools and utilities
βββ app_widget.dart # Main Widget containing MaterialApp
βββ main.dart # runAppWhat we did in this structure was to continue using MVC, but this time in scope. This means that
each feature has its own MVC, and this simple approach solves many scalability and maintainability issues.
We call this approach "Smart Structure". But two things were still Global and clashed with the structure itself, so we created Modular to solve this impasse.In short: Modular is a solution to modularize the route and dependency injection system, making each scope have
its own routes and injections independent of any other factor in the structure.
We create objects to group the Routes and Injections and call them **Modules**.## Ready to get started?
Modular is not only ingenious for doing something amazing like componentizing Routes and Dependency Injections, it's amazing
for being able to do all this simply!Go to the next topic and start your journey towards an intelligent structure.
## Common questions
- Does Modular work with any state management approach?
- Yes, the dependency injection system is agnostic to any kind of class
including the reactivity that makes up state management.- Can I use dynamic routes or Wildcards?
- Yes! The entire route tree responds as on the Web. Therefore, you can use dynamic parameters,
query, fragments or simply include a wildcard to enable a redirect
to a 404 page for example.- Do I need to create a Module for all features?
- No. You can create a module only when you think it's necessary or when the feature is no longer a part of
the scope in which it is being worked on.##
β¨ Usage**flutter_modular** was built using the engine of **modular_core** that's responsible for the dependency injection system and route management. The routing system emulates a tree of modules, just like Flutter does in it's widget trees. Therefore we can add one module inside another one by creating links to the parent module.
##
Starting a projectOur first goal will be the creation of a simple app with no defined structure or architecture yet, so that we can study the initial components of **flutter_modular**
Create a new Flutter project:
```
flutter create my_smart_app
```Now add the **flutter_modular** to pubspec.yaml:
```yamldependencies:
flutter_modular: any```
If that succeeded, we are ready to move on!
>**π‘ TIP:** Flutter's CLI has a tool that makes package installation easier in the project. Use the command:
>`(flutter pub add flutter_modular)`##
The ModularAppWe need to add a **ModularApp** Widget in the root of our project. MainModule and MainWidget will be created in the next steps, but for now let's change our **main.dart** file:
```dart title="lib/main.dart"
import 'package:flutter/material.dart';
void main(){
return runApp(ModularApp(module: /**/, child: /**/));
}```
**ModularApp** forces us to add a main Module and main Widget. What are we going to do next?
This Widget does the initial setup so everything can work as expected. For more details go to **ModularApp** doc.>**π‘ TIP:** It's important that **ModularApp** is the first widget in your app!
##
Creating the Main ModuleA module represents a set of Routes and Binds.
- **ROUTE**: Page setup eligible for navigation.
- **BIND**: Represents an object that will be available for injection to other dependencies.We'll see more info about these topics further below.
We can have several modules, but for now, let's just create a main module called **AppModule**:
```dart title="lib/main.dart" {8-16}
import 'package:flutter/material.dart';
import 'package:flutter_modular/flutter_modular.dart';void main(){
return runApp(ModularApp(module: AppModule(), child: ));
}class AppModule extends Module {
@override
List get binds => [];@override
List get routes => [];
}
```Note that the module is just a class that inherits from the **Module** class, overriding the **binds** and **routes** properties.
With this we have a route and injection mechanism separate from the application and can be both applied in a global context (as we are doing) or in a local context, for example, creating a module that contains only binds and routes only for a specific feature!We've added **AppModule** to ModularApp. Now we need an initial route, so let's create a StatelessWidget to serve as the home page.
```dart title="lib/main.dart" {14,18-27}
import 'package:flutter/material.dart';
import 'package:flutter_modular/flutter_modular.dart';void main(){
return runApp(ModularApp(module: AppModule(), child: ));
}class AppModule extends Module {
@override
List get binds => [];@override
List get routes => [
ChildRoute('/', child: (context, args) => HomePage()),
];
}class HomePage extends StatelessWidget {
Widget build(BuildContext context){
return Scaffold(
appBar: AppBar(title: Text('Home Page')),
body: Center(
child: Text('This is initial page'),
),
);
}
}
```We've created a Widget called **HomePage** and added its instances in a route called **ChildRoute**.
>**π‘ TIP:** There are two ModularRoute types: **ChildRoute** and **ModuleRoute**.
>- **ChildRoute**: Serves to build a Widget.
>- **ModuleRoute**: Concatenates another module.##
π§βπ» ContributingContributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the appropriate tag.
Don't forget to give the project a star! Thanks again!1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull RequestRemember to include a tag, and to follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) and [Semantic Versioning](https://semver.org/) when uploading your commit and/or creating the issue.
##
π¬ ContactFlutterando Community
- [Discord](https://discord.gg/MKPZmtrRb4)
- [Telegram](https://t.me/flutterando)
- [Website](https://www.flutterando.com.br)
- [Youtube Channel](https://www.youtube.com.br/flutterando)
- [Other useful links](https://linktr.ee/flutterando)
##
π₯ Contributors## π οΈ Maintaned by
This fork version is maintained by Flutterando.