gskinner / gskinner/flutter_animate
Add support for size tweens (SizedBox + FractionallySizedBox)
Open
- Dominant language
- Dart
- Stars
- 1.1k
- Forks
- 103
- PR merge metrics
- No merged PRs in 30d
Description
It would be nice to be able to tween the actual size of things, probably using `SizedBox` and `FractionallySizedBox` internally:
```
Button().animate().width(begin: 40, end: 200);
Button().animate().size(begin: Offset.zero, end: Offset(50, 100);
Button().animate().widthPct(begin: .2, end: 1);
Button().animate().sizePct(begin: Offset.zero, end: Offset(1, 1));
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.