dancormier / react-native-swipeout

iOS-style swipeout buttons behind component
MIT License
2.62k stars 645 forks source link

Touchable Opacity Not working after adding swipeout #324

Open ManigandanRaamanathan opened 5 years ago

ManigandanRaamanathan commented 5 years ago

Touchable Opacity of the same swiping view not functioning after adding swipeout in it. I'm using accordion and wants to have swipeout as well

ghost commented 5 years ago

Same issue

kalinchuk commented 5 years ago

+1

tranphuoclocce13 commented 5 years ago

Same issue

flaik-boao commented 5 years ago

Try wrap TouchableOpacity by Swipeout, works for me

<Swipeout>
   <TouchableOpacity>
       <View />
    </TouchableOpacity>
</Swipeout>
Taren91 commented 4 years ago

no its not... when item is open seems nothing is working on it.

ronenmiller-khealth commented 3 years ago

Try wrap TouchableOpacity by Swipeout, works for me

<Swipeout>
   <TouchableOpacity>
       <View />
    </TouchableOpacity>
</Swipeout>

This works, but it presses the item on each swipe triggering the opacity effect.