flutter_modular_test

Creator: coderz1093

Last updated:

0 purchases

flutter_modular_test Image
flutter_modular_test Images
Add to Cart

Description:

flutter modular test

flutter_modular_test #
@DEPRECATED: This package will be discontinued. Use modular_test instead
Init Modules and test the integration
Getting Started #
Add in your pubspec.yaml

dev_dependecies:
flutter_modular_test:

copied to clipboard
Using #
Start a Module #

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

copied to clipboard
Start more then one Module #

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

copied to clipboard
Replace binds of Module #

main(){

final dioMock = DioMock();

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

copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.