LongPress 长按
长按事件封装
示例
<LongPress onLongPress={() => toast('长按事件')}>
<Column style={{ backgroundColor: '#fff', padding: 12 }}>
<Text>长按此区域</Text>
</Column>
</LongPress>
Props
继承自Taro的View Props
onLongPress
长 按事件的处理函数
类型 | 必填 | 默认值 |
---|---|---|
(event: any) => void | 否 |
onPress
点击事件的处理函数
类型 | 必填 | 默认值 |
---|---|---|
(event: any) => void | 否 |