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

outdated

Simple animations inspired on Animate.css - Author Fernando Herrera

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: Rectangulo()
          )
        ),
      ),
    );
  }
}

class Rectangulo extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Container(
      width: 50,
      height: 50,
      decoration: BoxDecoration(
        color: Colors.blueAccent,
      ),
    );
  }
}
4.85k
likes
30
points
72.5k
downloads

Publisher

verified publisherfernando-herrera.com

Weekly Downloads

Simple animations inspired on Animate.css - Author Fernando Herrera

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on animate_do