5. Touchables #
Created Wed Nov 15, 2023 at 12:08 AM
- These are some wrapper core components meant to be clicked/tapped by the user
- There are 3:
TouchableOpacity
- on tap, does whitening (opacity of content is reduced)TouchableHighlight
- on tap, does darkening (background is darkened).TouchableOpacityWithoutFeedback
- on tap, no interaction Ui. Try to avoid this unless necessary.TouchableNativeFeedback
- on tap, animates acc to stock Android UI. Only available for Android.Pressable
- fine grained press events likeonPressIn
,onPressout
etc. No interaction UI.
- All have these events:
onPress
onLongPress
- Btw,
View
has noonPress
event