Skip to main content

Fade

A widget that performs a fade animation on its child widget.

Preview

Fade Animation

Constructor

const FadeAnimation({
required this.child,
required this.delay,
super.key,
});

Example:

FadeAnimation(
child: MyWidget(),
delay: 200,
)