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

outdated

Beautiful animations inspired on Animate.css, every animation is a widget that contains default but customizable values that look attractive.

example/main.dart

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

void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        body: Center(
          child: BounceInDown(
            child: Square()
          )
        ),
      ),
    );
  }
}

class Square extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Container(
      width: 50,
      height: 50,
      decoration: BoxDecoration(
        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 widget that contains default but customizable values that look attractive.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on animate_do