custom_like_button 0.0.5 copy "custom_like_button: ^0.0.5" to clipboard
custom_like_button: ^0.0.5 copied to clipboard

A Like Button with animation is to apply custom(different) icon with color, size and flip animation.

example/lib/main.dart

import 'package:example/like_button_with_animation.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      builder: (BuildContext c, Widget? w) {
        final MediaQueryData data = MediaQuery.of(c);
        return const LikeButtonWithAnimation();
      },
    );
  }
}
4
likes
150
pub points
44%
popularity

Publisher

verified publisheraddwebsolution.com

A Like Button with animation is to apply custom(different) icon with color, size and flip animation.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_like_button