Flutter button reaction it is fully customizable widget such as Facebook reaction button.
Include 'flutter_reaction_button' from Dart Pub.
# pubspec.yaml
dependencies:
flutter:
sdk: flutter
flutter_reaction_button: <last-version>
Next, import 'flutter_reaction_button.dart' into your dart code.
import 'package:flutter_reaction_button/flutter_reaction_button.dart';
parameter | description | default |
---|---|---|
OnReactionChanged | triggered when reaction button value change | |
reactions | reactions appear in reactions box when long pressed on ReactionnButtonToggle or click on ReactionButton | |
initialReaction | Default reaction button widget | first item in reactions list |
boxPosition | Position of reactions box according to the button | Position.TOP |
boxColor | Reactions box color | Colors.white |
boxElevation | Reactions box elevation | 5 |
boxRadius | Reactions box radius | 50 |
boxPadding | Reactions box padding | const EdgeInsets.all(0) |
boxDuration | Reactions box show/hide duration | 200 milliseconds |
shouldChangeReaction | Shold change initial reaction after selected one or not | true |
itemScale | Scale ratio when item hovered | 0.3 |
itemScaleDuration | Scale duration while dragging | const Duration(milliseconds: 100) |
MIT License
Copyright (c) 2019 Abdelouahed Medjoudja
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.