Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kdy1/app_base

My own commons library for flutter.
https://github.com/kdy1/app_base

Last synced: 26 days ago
JSON representation

My own commons library for flutter.

Awesome Lists containing this project

README

        

# app_base

My own commons library for flutter.

## Usage

### Dependency injection

```dart
void main(){
return runApp(Module().register(ServiceImpl()).build(MyApp()));
}
```

```dart
final svc = inject(context);
```