【发布时间】:2020-11-10 11:01:31
【问题描述】:
【问题讨论】:
标签: react-native rotation gesture multi-touch
【问题讨论】:
标签: react-native rotation gesture multi-touch
看看这个react-native-easy-gestures
import Gestures from 'react-native-easy-gestures';
/**
* Another example:
* Drag only on x axis;
* Scale from 0.1 to 7;
* Do not rotate;
* On release callback;
*/
<Gestures
draggable={{
y: false,
}}
scalable={{
min: 0.1,
max: 7,
}}
rotatable={false}
onEnd={(event, styles) => {
console.log(styles);
}}
>
<Image
source={photo}
style={{
width,
height,
}}
/>
</Gestures>
【讨论】: