progress_animation_builder 1.0.0 copy "progress_animation_builder: ^1.0.0" to clipboard
progress_animation_builder: ^1.0.0 copied to clipboard

outdated

ProgressAnimationBuilder

progress_animation_builder #

gif

ProgressAnimationBuilder

Usage #

ProgressAnimationBuilder(
  value: _isInitial ? 0 : 1,
  duration: Duration(milliseconds: 1000),
  curve: Curves.slowMiddle,
  builder: (context, animation) {
    return AnimatedIcon(
      size: MediaQuery.of(context).size.width * 3 / 4,
      icon: AnimatedIcons.play_pause,
      progress: animation,
    );
  },
);

Example #