flutter_modular_test 1.0.0-nullsafety.2 copy "flutter_modular_test: ^1.0.0-nullsafety.2" to clipboard
flutter_modular_test: ^1.0.0-nullsafety.2 copied to clipboard

outdated

Smart project structure with dependency injection and route management

flutter_modular_test #

Init Modules and test the integration

Getting Started #

Add in your pubspec.yaml


dev_dependecies:
  flutter_modular_test:

Using #

Start a Module #


main(){
    setUp(){
        initModule(AppModule());
    }
}

Start more then one Module #


main(){
    setUp(){
        initModules([AppModule(), HomeModule(), PerfilModule()]);
    }
}

Replace binds of Module #


main(){

    final dioMock = DioMock();

    setUp(){
        initModule(AppModule(), replaceBinds: [
            Bind.instance<Dio>(dioMock),
        ]);
    }
}

5
likes
0
pub points
70%
popularity

Publisher

verified publisherflutterando.com.br

Smart project structure with dependency injection and route management

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_modular

More

Packages that depend on flutter_modular_test