This repository was archived by the owner on Sep 9, 2025. It is now read-only.
v0.3.0
- Support function callbacks and generic functions:
```dart
@widget
Widget foo<T>(void onTap(T value)) {
// do something
}
```
- Updated support for `HookWidget` using new annotation `@hwidget`:
```dart
@hwidget
Widget foo() {
final counter = useState(0);
// do something
}
```