From a84c6ec59867b46e907bb6847c7e0efffc1d6e43 Mon Sep 17 00:00:00 2001 From: Ricardo Dalarme Date: Mon, 20 Feb 2023 15:22:20 -0300 Subject: [PATCH] docs(constructor): fix missing is required param --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27afd60..f5bcae6 100644 --- a/README.md +++ b/README.md @@ -103,8 +103,8 @@ class Example extends StatelessWidget { | threshold | 50 | Threshold from which the card is swiped away | false | scale | 0.9 | Scale of the card that is behind the front card | false | isDisabled | false | Set to ```true``` if swiping should be disabled, has no impact when triggered from the outside | false -| isHorizontalSwipingEnabled | true | Set to ```false``` if you want your card to move only across the vertical axis when swiping -| isVerticalSwipingEnabled | true | Set to ```false``` if you want your card to move only across the horizontal axis when swiping +| isHorizontalSwipingEnabled | true | Set to ```false``` if you want your card to move only across the vertical axis when swiping | false +| isVerticalSwipingEnabled | true | Set to ```false``` if you want your card to move only across the horizontal axis when swiping | false | onTapDisabled | - | Function that get triggered when the swiper is disabled | false | onSwipe | - | Called with the new index and detected swipe direction when the user swiped | false | onEnd | - | Called when there is no Widget left to be swiped away | false