many_like 1.0.0
many_like: ^1.0.0 copied to clipboard
A widget like a tiktok like button write in pure flutter.Support custom animation.
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(),
);
}
}