many_like 0.0.4
many_like: ^0.0.4 copied to clipboard
A widget like a tiktok like button write in pure flutter.Support custom animation.
example/lib/main.dart
import 'package:flutter/material.dart';
import './home.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'many_like_demo',
home: HomePage(),
);
}
}