My own commons library for flutter.


License
Apache-2.0

Documentation

app_base

My own commons library for flutter.

Usage

Dependency injection

void main(){
  return runApp(Module().register<Service>(ServiceImpl()).build(MyApp()));
}
final svc = inject<Service>(context);