我目前正在开发React Native应用。 我正在使用react-native-video:https://github.com/react-native-community/react-native-video
我找不到类似onClick()道具的东西。 为视频上的点击事件实现功能的最佳方法是什么?
答案 0 :(得分:2)
您应该像这样使用touchablehighlight:
class MyVideoComponent extends React.Component {
videoPressed() {
console.log("Video pressed");
}
render() {
return(
<TouchableHighlight
onPress={() => this.videoPressed()}
>
<YOURVIDEOCOMPONENT/>
</TouchableHighlight>
);
}
}