Skip to content

Flutterando/modular

Repository files navigation

Flutter Modular


Logo Logo

Welcome to Flutter Modular! A smart project structure.

View Example Β· Report Bug Β· Request Feature



Table of Contents
  1. About The Project
    1. What is Modular?
    2. Ready to get started?
    3. Common questions
  2. Usage
    1. Starting a project
    2. The ModularApp
    3. Creating the Main Module
  3. Contributing
  4. Contact
  5. Contributors


πŸ“ About The Project

Let'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                               # runApp 

Here 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                                # runApp 

What 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 project

Our 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:

dependencies:
  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 ModularApp

We 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:

import 'package:flutter/material.dart';

void main(){
  return runApp(ModularApp(module: /*<MainModule>*/, child: /*<MainWidget>*/));
}

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 Module

A 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:

import 'package:flutter/material.dart';
import 'package:flutter_modular/flutter_modular.dart';

void main(){
  return runApp(ModularApp(module: AppModule(), child: <MainWidget>));
}

class AppModule extends Module {
  @override
  List<Bind> get binds => [];

  @override
  List<ModularRoute> 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.

import 'package:flutter/material.dart';
import 'package:flutter_modular/flutter_modular.dart';

void main(){
  return runApp(ModularApp(module: AppModule(), child: <MainWidget>));
}

class AppModule extends Module {
  @override
  List<Bind> get binds => [];

  @override
  List<ModularRoute> 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.

πŸ§‘β€πŸ’» Contributing

Contributions 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 Request

Remember to include a tag, and to follow Conventional Commits and Semantic Versioning when uploading your commit and/or creating the issue.

(back to top)

πŸ’¬ Contact

Flutterando Community

(back to top)


πŸ‘₯ Contributors

(back to top)

πŸ› οΈ Maintaned by


This fork version is maintained by Flutterando.