animate_do 3.2.0 copy "animate_do: ^3.2.0" to clipboard
animate_do: ^3.2.0 copied to clipboard

Beautiful animations inspired on Animate.css, every animation is a customizable widget.

example/example.dart

import 'package:flutter/material.dart';
import 'package:animate_do/animate_do.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      theme: ThemeData.light(useMaterial3: true),
      home: Scaffold(
      body: Center(

          child: Row(
          mainAxisAlignment: MainAxisAlignment.spaceAround,
          children: <Widget>[

              FadeInLeft(child: const Square() ),
              FadeInUp(child: const Square() ),
              FadeInDown(child: const Square() ),
              FadeInRight(child: const Square() ),
              
          ],
          ),

      ),
  ),
    );
  }
}


class Square extends StatelessWidget {
  const Square({Key? key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return Container(
      width: 50,
      height: 50,
      color: Colors.blueAccent,
    );
  }
}
4160
likes
0
pub points
99%
popularity

Publisher

verified publisherfernando-herrera.com

Beautiful animations inspired on Animate.css, every animation is a customizable widget.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animate_do