build method
Widget
build(
- BuildContext context,
- Widget child,
- AnimationController controller,
- EffectEntry entry,
override
Builds the widgets necessary to implement the effect, based on the provided AnimationController and EffectEntry.
Implementation
@override
Widget build(
BuildContext context,
Widget child,
AnimationController controller,
EffectEntry entry,
) {
double ratio = getEndRatio(controller, entry);
return getToggleBuilder(
animation: controller,
child: child,
toggle: () => controller.value < ratio,
builder: builder,
);
}