gskinner / gskinner/flutter_animate
ShimmerEffect alters widget dimensions
Open
enhancement
- Dominant language
- Dart
- Stars
- 1.1k
- Forks
- 103
- PR merge metrics
- No merged PRs in 30d
Description
Animation widget has its dimensions 1 px at the bottom and 1 px on the right side
In this snipet container will be overflowed at the bottom by 1 px
```
Container(
height: 86,
color: Colors.red,
child: Animate(
effects: [
ShimmerEffect(
duration: 1000.ms,
color: AppColors.shimmerAnimationCollor
)
],
controller: _animationController,
onPlay: (controller) => controller.repeat(),
child: Container(
height: 86,
)
)
)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.