fadeInScale method
Combine fade in and scale
Implementation
AnimatedWidgetBuilder fadeInScale(double scaleValue) {
return _copyWith(config: config.copyWith(
opacity: 1.0,
scale: scaleValue,
));
}
Combine fade in and scale
AnimatedWidgetBuilder fadeInScale(double scaleValue) {
return _copyWith(config: config.copyWith(
opacity: 1.0,
scale: scaleValue,
));
}