Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kdy1/app_base
- Owner: kdy1
- License: apache-2.0
- Created: 2018-09-27T06:31:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-18T03:18:50.000Z (over 4 years ago)
- Last Synced: 2024-11-16T07:07:38.348Z (about 2 months ago)
- Language: Dart
- Homepage: https://pub.dartlang.org/packages/app_base
- Size: 25.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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);
```