SwipeTo is a wrapper for a chat view widget which can be used initiate callback when user horizontally swipe on it.
To use this packages, you just simply need to wrap your child component in SwipeTo
widget and pass a VoidCallback
that you can carry forward with your task.
In the pubspec.yaml
of your flutter project, add the following dependency:
dependencies:
...
swipe_to: 1.0.4
In your library add the following import:
import 'package:swipe_to/swipe_to.dart';
child
: (@required)StateLess
orStateFull
flutter widget.onRightSwipe
: callback which will be initiated at the end of right swipe animation. If not passed right swipe will be disabledonLeftSwipe
: callback which will be initiated at the end of left swipe animation. If not passed left swipe will be disablediconOnRightSwipe
: IconData that will be displayed on left beneath child widget when swiped right. If not specified default isIcons.reply
rightSwipeWidget
: Widget that will be displayed beneath child widget when swipe right. IficonOnRightSwipe
is defined this will have no effect.iconOnLeftSwipe
: IconData that will be displayed on right beneath child widget when swiped left. If not specified default isIcons.reply
leftSwipeWidget
: Widget that will be displayed beneath child widget when swipe left. IficonOnLeftSwipe
is defined this will have no effect.iconSize
: Double value defining size of displayed icon beneath child widget. If not specified default it will take 26iconColor
: Color value defining color of displayed icon beneath child widget. If not specifiedprimaryColor
from theme will be takenoffsetDx
: Double dx value used inOffset()
till which position of child widget will get animated. If not specified 0.3 default will be taken. onRightSwipe +dx value will be used and for onLeftSwipe -dx value will be usedanimationDuration
: Duration value to define animation duration. If not specified default is 150 millisecondsswipeSensitivity
: Swipe sensitivity integer value which will be in range of default min 20 to max 35. Crossing mentioned value of this parameter (+ve in right and -ve in left direction) will trigger swipe animation.
- For a single child widget, we can now enable swipe for both left and right direction
swipeDirection
parameter is removed. NowonLeftSwipe
andonRightSwipe
callback will enable swiping for a particular direction if passediconData
is now split into two parameter,iconOnRightSwipe
&iconOnLeftSwipe
for future useendOffset
is now change to accept a double value onlycallBack
is now split into two parameter,onLeftSwipe
&onRightSwipe
- swipeDirection : Enum value from [
swipeToLeft
,swipeToRight
] only. Make sure to pass relative Offset value according to passedswipeDirection
value. If not specifiedswipeToRight
will be taken as default. - iconData : IconData that will be displayed beneath child widget. if not specified default is
Icons.reply
- endOffset : Offset value till which position of child widget will get animated. if not specified Offset(0.3, 0.0) default will be taken
- callBack : (@required) callback which will be initiated at the end of swipe animation
Example : SwipeToRight
Wrap your desired widget with SwipeTo
& pass a call to onRightSwipe
parameter.
SwipeTo(
child: Container(
padding: const EdgeInsets.symmetric(vertical: 10.0, horizontal: 8.0),
child: Text('Hey You! Swipe me right 👉🏿'),
),
onRightSwipe: () {
print('Callback from Swipe To Right');
},
),
Example : SwipeToLeft
Wrap your desired widget with SwipeTo
& pass a call to onLeftSwipe
parameter.
SwipeTo(
child: Container(
padding: const EdgeInsets.symmetric(vertical: 10.0, horizontal: 8.0),
child: Text('👈🏿 Hey You! Swipe me Left'),
),
onLeftSwipe: () {
print('Callback from Swipe To Left');
},
),
Example : SwipeToLeft & SwipeToRight
Wrap your desired widget with SwipeTo
& pass a call to onLeftSwipe
& onRightSwipe
parameters.
SwipeTo(
child: Container(
padding: const EdgeInsets.symmetric(vertical: 10.0, horizontal: 8.0),
child: Text('👈🏿 Swipe me Left | YOU |Swipe me right 👉🏿'),
),
onLeftSwipe: () {
print('Callback from Swipe To Left');
},
onRightSwipe: () {
print('Callback from Swipe To Right');
},
),