私は現在、反応するネイティブアプリに取り組んでいます。私はreact-native-videoを使用しています: https://github.com/react-native-community/react-native-video
onClick() prop のようなものが見つかりませんでした。動画のクリック イベントの機能を実装する最良の方法は何ですか?
私は現在、反応するネイティブアプリに取り組んでいます。私はreact-native-videoを使用しています: https://github.com/react-native-community/react-native-video
onClick() prop のようなものが見つかりませんでした。動画のクリック イベントの機能を実装する最良の方法は何ですか?
次のようにtouchablehighlightを使用する必要があります。
class MyVideoComponent extends React.Component {
videoPressed() {
console.log("Video pressed");
}
render() {
return(
<TouchableHighlight
onPress={() => this.videoPressed()}
>
<YOURVIDEOCOMPONENT/>
</TouchableHighlight>
);
}
}