Control touchable area in react-native

前端 未结 2 1567
花落未央
花落未央 2021-02-06 22:09

I have a square TouchableOpacity button, whose graphics is just a small dot icon in the middle, and the rest is transparent background. I find that in many Android

2条回答
  •  别跟我提以往
    2021-02-06 22:51

    You can use the View#hitSlop property to increase the touchable area. This can be useful in scenarios where you know that the increased touch area won't overlap with other touchables.

    A more robust solution is to use the padding style property. The touchable area of the Touchable* components includes the element's padding.

提交回复
热议问题