https://github.com/kdy1/app_base
My own commons library for flutter.
https://github.com/kdy1/app_base
Last synced: 4 months 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 (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-18T03:18:50.000Z (almost 5 years ago)
- Last Synced: 2025-01-16T23:12:20.746Z (6 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);
```