Flutter_animate
This library allows you to include animations in the form of widgets.
import 'package:flutter_animate/flutter_animate.dart';Animate(
//You specify the type of animation you want to create
effects: [FadeEffect(duration: 1000.ms, delay: 500.ms)],
child: Text("Hello World!"),
)Text("Hello World!").animate().fade().scale()Last updated