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