ReactionListItemWrapper

ReactionListItemWrapper is the shared pressable wrapper used by reaction list items.

Best Practices

  • Use this wrapper to keep reaction interaction states consistent.
  • Prefer style overrides over replacing pressed/selected state logic.
  • Keep custom styles additive to preserve spacing and border radius.
  • Ensure press targets remain large enough for accessibility.
  • Avoid adding heavy children that increase layout cost.

Props

PropDescriptionType
selectedWhether to render the selected visual state. Defaults to false.boolean
styleAdditional style for the inner container.StyleProp<ViewStyle>
PressablePropsAll standard React Native Pressable props are supported (for example onPress, onLongPress, disabled, and accessibility props).