flutterw 0.5.0-pre.2 flutterw: ^0.5.0-pre.2 copied to clipboard
flutterw wraps flutter tool to support hooks and progressive plugins system.
Intruction #
flutterw
wraps flutter tool with more advanced usage.
Features #
- Basiclly supports all flutter commands.
- Located flutter tool.
- Command hooks
Getting Started #
Install the latest flutterw
version as a global package via Pub.
dart pub global activate flutterw
# Or alternatively to specify a specific version:
# pub global activate flutterw 0.3.0
Usage #
Just use flutterw
as flutter
tool.
i.e:
flutterw clean
flutterw pub get
...
Command Hooks #
Adding command hooks in flutterw.yaml
can automatically do extra works.
hooks:
pre_clean:
- echo 'task 1'
- echo 'task 2'
post_pub_get:
- echo 'task 3'
- echo 'task 4'