Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noxasch/flutter_app_widget
Flutter plugin to manage home screen widget within flutter app.
https://github.com/noxasch/flutter_app_widget
flutter flutter-packages flutter-plugin
Last synced: about 1 month ago
JSON representation
Flutter plugin to manage home screen widget within flutter app.
- Host: GitHub
- URL: https://github.com/noxasch/flutter_app_widget
- Owner: noxasch
- License: bsd-3-clause
- Created: 2022-09-15T07:21:42.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-26T12:27:02.000Z (8 months ago)
- Last Synced: 2024-04-26T18:31:43.196Z (8 months ago)
- Topics: flutter, flutter-packages, flutter-plugin
- Language: Dart
- Homepage: https://pub.dev/packages/app_widget/
- Size: 757 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flutter App Widget
App Widget / Home Screen widget plugin for flutter app## Usage
Please see [app_widget](./app_widget) subdirectory for the usage documentation.
## Plaform Support
| Android | iOS |
| :-----: | :-: |
| ✔️ | |## Project Structure
This project follow the standard for flutter plugin development where each
pieces are independent of each other. Other platform interface can be easily added
by inherit the base platform interface and expose the require api to the main `app_wiget`
plugin.## Contributing
0. Fork
1. Checkout to feature branch
2. Add feature and unit test
3. Make sure all unit test pass
4. Add platform integration test and run integration test
5. Create a PR## Android Integration Test
- Make sure to run on the latest and minSdk supportedin `app_widget/example/integration_test/app_widget_test.dart`
```sh
cd app_widget/example
# this will require a connected device for android
flutter test integration_test/app_widget_test.dart
```