animateable 0.0.3 copy "animateable: ^0.0.3" to clipboard
animateable: ^0.0.3 copied to clipboard

Flutter package project thats contain any widgets with animation behaviour at their self.

example/lib/main.dart

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

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primarySwatch: Colors.pink,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: const Home(),
      debugShowCheckedModeBanner: false,
    );
  }
}
2
likes
140
pub points
0%
popularity

Publisher

unverified uploader

Flutter package project thats contain any widgets with animation behaviour at their self.

Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on animateable