Skip to content

A simple flutter plugin to add animated instagram like heart animation

License

Notifications You must be signed in to change notification settings

shreyassanthu77/flutter_heart_animation_overlay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flutter Heart Animation Overlay

A simple flutter plugin to add instagram like heart animation overlay to your app

installing

in your pubspec.yaml add

dependencies:
  flutter_heart_animation_overlay:
    git: https://github.com/shreyassanthu77/flutter_heart_animation_overlay

usage

import the package

import 'package:flutter_heart_animation_overlay/heart_animation_overlay.dart'

use the package

FlutterHeartAnimationOverlay(
    builder: (BuildContext context, void Function() animateHeart) {
        return Container(
            child: ElevatedButton(
                child: Text("Like..."),
                onPressed: () {
                    animateHeart();
                }
            )
        );
    }
)

About

A simple flutter plugin to add animated instagram like heart animation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages