like_button icon indicating copy to clipboard operation
like_button copied to clipboard

Like Button is a flutter library that allows you to create a button with animation effects similar to Twitter's heart when you like something and animation effects to increase like count.

Results 21 like_button issues
Sort by recently updated
recently updated
newest added

I am trying to implement an instagram like app. I want that when I press the LikeButton() , on certain conditions no animation should be played. Is there some way...

My like button: ``` LikeButton( onTap: (value) { onGroupVotePress(document); return Future.value(!value); }, ), ``` When I'm running my `onGroupVotePress` function my like_button animation crashes. My `onGroupVotePress` function: ``` void onGroupVotePress(DocumentSnapshot...

How do we use NumberFormat.compact() on likeCount? if the number hits 10,000 its not shorten to 10k

removed waiting to complete the animation if user pressed the like button multiple times. Since we are already resetting controller in click listener, so there is not need to wait...

### Platforms dart ### Description Can we add a feature to accept an optional index on the like button it helps when we want to do a request that required...

StackOverFlow

### Platforms dart, Android, iOS ### Description This appears to only work for circular (or square) buttons. It would be great to support longer buttons (like those that contain text)....

### Platforms Android, iOS ### Description I'd love for an option to allow the button to be tapped quickly and any running animation gets canceled. This way people can quickly...

Fix _handleIsLikeChanged which stops animations when a remote initial value (eg: from Firestore) of isLiked is provided to LikeButton. The comparison isLiked != _isLiked is unnecessary

I am using the state of the widget to trigger the animation from another location in the app, but the animation that controls the number of likes is not working....

The package will not work the way it is expected to work when 2 request. for eg : likePost() refreshFeeds() are sent