flutter_multi_module_di

Creator: coderz1093

Last updated:

0 purchases

flutter_multi_module_di Image
flutter_multi_module_di Images
Add to Cart

Description:

flutter multi module di

Flutter multi module dependency injection #
An easy-to-use DI that works based on a dependency tree.
Installation #
In the dependencies: section of your pubspec.yaml, add the following line:
Important note:
From 2.0.0 and onwards, flutter_multi_module_di uses null-safe code.
dependencies:
flutter_multi_module_di: latest_version
copied to clipboard
Multi module example #
You can use a dependency tree for the entire application, widget and component.



Usage #
class MainPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ChildInjectorStatefulWidget(
childModuleBuilder: () => MainModule(context),
injectorBuilder: (i) => _MainWidget(i.get(), i.get(name: "test_1")),
);
}
}

class _MainWidget extends StatelessWidget {
final MainBloc _bloc;
final String _testSrt;

_MainWidget(this._bloc, this._testSrt);

@override
Widget build(BuildContext context) {
...
}
}
copied to clipboard
You can also extend WidgetModule to configure your dependencies:
class MainModule extends WidgetModule {
MainModule(BuildContext context) : super(context);

@override
void configureWidget(Binder binder) {
binder..bindLazySingleton((i, _) => MainBloc(i.get(), i.get())..add(MainPageOpenedEvent()));

binder..bindLazySingleton((i, _) => MainNavigator(i.get()));
}
}
copied to clipboard
or use common dart module
class TestModule extends Module {
@override
void configure(Binder binder) {
// impl
}
}
copied to clipboard
You can later refer to the injector like any other InheritedWidget.
class SomeWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
final injector = InjectorWidget.of(context);
final apiKey = injector.get(name: "api_key");
return SomeContainerNeedingTheKey(apiKey);
}
}
copied to clipboard
Or using the InjectorWidgetMixin:
class SomeWidget extends StatelessWidget with InjectorWidgetMixin {
@override
Widget buildWithInjector(BuildContext context, Injector injector) {
final object = injector.get<Object>();
print(object);
return Container();
}
}
copied to clipboard
Full api #
ChildInjectorStatefulWidget #
Creates a singleton module containing the child module and parent dependencies
class MainPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ChildInjectorStatefulWidget(
childModuleBuilder: () => MainModule(context),
injectorBuilder: (i) => _MainWidget(i.get(), i.get(name: "test_1")),
);
}
}
copied to clipboard
ChildInjectorWidget #
Creates a new module containing the child module and parent dependencies
class MainPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ChildInjectorWidget(
childModule: MainModule(context),
injectorBuilder: (injector) {
...
},
);
}
}
copied to clipboard
InjectorWidget #
@override
Widget build(BuildContext context) {
return InjectorWidget(
child: Text(""),
injector: Injector.fromModule(module: ...),
autoDispose: true, // default: true
);
}
copied to clipboard
InjectorWidgetMixin #
class TestWidget with InjectorWidgetMixin {
@override
Widget buildWithInjector(BuildContext context, Injector injector) {
injector.get(name: "test_key");
return Container();
}
}
copied to clipboard
WithInjectorWidget & WithInstanceWidget #
@override
Widget build(BuildContext context) {
return WithInjectorWidget(
builder: (injector) {
injector.get(name: "test");
return Container();
},
);
}

@override
Widget build(BuildContext context) {
return WithInstanceWidget<SharedPreferences>(
builder: (sharedPrefs) {
return Container();
},
);
}
copied to clipboard
ModuleWidget #
class TestWidget extends ModuleWidget {
@override
void configure(Binder binder) {

}
}
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.