You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have a ScrollableTabView component in which I have buttons. When sometimes I want to scroll to another tab I accidentally click the button that opens a new window.
Is there any easy/sensible way to solve this problem? Interrupt the onPress function if the card changes or something similar?
The text was updated successfully, but these errors were encountered:
I was kind of facing similar issue. I had a Touchable Opacity in the Tab children and when swiping between Tabs, it would end up clicking the card. I solved it by
import {TouchableOpacity } from 'react-native-gesture-handler'.
Using it from the react native gesture handler solves it.
Hi, I have a ScrollableTabView component in which I have buttons. When sometimes I want to scroll to another tab I accidentally click the button that opens a new window.
Is there any easy/sensible way to solve this problem? Interrupt the onPress function if the card changes or something similar?
The text was updated successfully, but these errors were encountered: