helper_animation 0.1.0 copy "helper_animation: ^0.1.0" to clipboard
helper_animation: ^0.1.0 copied to clipboard

A simple animation helper library for Flutter widgets.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:helper_animation/widgets/effect_animation.dart';
import 'package:helper_animation_example/animation_demo.dart';

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

class AnimationDemoApp extends StatelessWidget {
  const AnimationDemoApp({super.key});

  @override
  Widget build(BuildContext context) {
    return GetMaterialApp(
      title: 'Animation Demo',
      debugShowCheckedModeBanner: false,
      home: AnimationDemo(),
    );
  }
}
0
likes
125
points
23
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A simple animation helper library for Flutter widgets.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on helper_animation