Hello thanks for such an awesome library, my app supports the Arabic language which is RTL.
it would be easy for me if there is a way to disable left or right swipe respectively. when either right or left swipe is enabled I need to show delete button
I am looking for somthing similar to fowlling screenshots
when lyout is RTL

when lyout LTR

Hey @ramisalem this isn't something currently supported out of the box but by changing the style for your delete button and changing things like rightOpenValue / leftOpenValue depending on if RTL is enabled or not this is definitely achievable
@jemise111 first off, this is the only swipe system we can get working with Expo - so grats to you on making this possible!
I am also looking to completely disable a drag direction.
@NHuebner1983 Is that specific to RTL support?
There are props to disable a swipe direction such as disableRightSwipe | disableLeftSwipe. Does that solve your issue?
That totally did the trick, thank you!
<SwipeRow
leftOpenValue={290}
disableLeftSwipe={true}
>
@NHuebner1983 Excellent!
Most helpful comment
@NHuebner1983 Is that specific to RTL support?
There are props to disable a swipe direction such as
disableRightSwipe|disableLeftSwipe. Does that solve your issue?