Estoy trabajando en react-native-swipeout , pero la segunda vez que deslizo, Swipeout no funciona
const SwipeableRow = ({ item, isOpen, onOpen, onPress }) => { return ( <Swipeout openRight={isOpen == item.id} close={true} onOpen={onOpen} style={styles.background} right={[ { text: 'Delete', backgroundColor: 'red', onPress, }, ]} > <Row item={item} /> </Swipeout> )}