simple_animations 0.0.6 copy "simple_animations: ^0.0.6" to clipboard
simple_animations: ^0.0.6 copied to clipboard

outdated

Create awesome animations. Simplified. Well documented. With many examples.

example/main.dart

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

void main() {
  runApp(ExampleApp());
}

class ExampleApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
            child: ControlledAnimation(
                duration: Duration(milliseconds: 800),
                tween: Tween(begin: 0.0, end: 100.0),
                builder: (context, width) {
                  return Container(
                      width: width, height: 50.0, color: Colors.red);
                })),
      ),
    );
  }
}
1887
likes
0
pub points
99%
popularity

Publisher

verified publisherfelix-blaschke.de

Create awesome animations. Simplified. Well documented. With many examples.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on simple_animations