<SwipeListView data={list} listKey={'list'} keyExtractor={list=> list.id} closeOnScroll={true} closeOnRowBeginSwipe={true} renderItem={({ item }) => <View><Text>{item.category}</Text></View> )} />
So I am impementing this swipelist view. The problem is that when I open the second element after I have opened the first one, the information inside the second element is the one of the first. I have to click 3 times on the second element so I can get the right information. How can I fix this?