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
Currently SettingsItem is based on a View component with an action assigned to onTouchEnd. The problem with this is that the touch will register while you are scrolling, and you can accidentally touch a settings item and perform and action you didn't want to. This is especially problematic with the 'Backup my identity' as there is no way to escape this screen on iOS without completing the process or exiting the app.
'Touchable' components such as TouchableOpacity or TouchableWithoutFeedback detect if you are scrolling and do not fire their action in these cases.
Tasks
Change View component to Touchable component on SettingsItem component.
The text was updated successfully, but these errors were encountered:
Description
Currently SettingsItem is based on a View component with an action assigned to
onTouchEnd
. The problem with this is that the touch will register while you are scrolling, and you can accidentally touch a settings item and perform and action you didn't want to. This is especially problematic with the 'Backup my identity' as there is no way to escape this screen on iOS without completing the process or exiting the app.'Touchable' components such as
TouchableOpacity
orTouchableWithoutFeedback
detect if you are scrolling and do not fire their action in these cases.Tasks
The text was updated successfully, but these errors were encountered: