GeekAbdelouahed / flutter-reaction-button

Flutter Reaction Button is a customizable Flutter package that allows you to easily create interactive buttons with reaction emojis, similar to Facebook's iconic reaction buttons.
https://pub.dev/packages/flutter_reaction_button
MIT License
215 stars 78 forks source link

Switch to using GestureDetector instead of Listener #40

Closed felixgabler closed 2 years ago

felixgabler commented 2 years ago

Currently, if the button is in a scrollable area, it is sometimes hard to press the button without triggering the Listener.onPointerMove that resets the timer. This PR uses Flutter's own widget for long press detection that catches these things and is also easier to understand. Furthermore, it should fix #31.