I have a list of messages and I'm making feature swipe to reply using PanGestureHandler, I want to limit area swipeable by props activeOffsetX, how can I achieve this?enter image description here
> <PanGestureHandler > enabled={!isInfoText} > activeOffsetX={ > isMyMessage ? [-POSITION_X, 0] : [0, POSITION_X] > } > onGestureEvent={_onHandleSwipe}> > PanGestureHandler>
Limit the area swipeable