Home
last modified time | relevance | path

Searched refs:onFullscreenUpdate (Results 1 – 20 of 20) sorted by relevance

/expo/packages/expo-av/build/
H A DExponentVideo.web.js14 if (!this.props.onFullscreenUpdate)
17 this.props.onFullscreenUpdate({
22 this.props.onFullscreenUpdate({
H A DVideo.types.d.ts138 onFullscreenUpdate?: (event: VideoFullscreenUpdateEvent) => void;
255 onFullscreenUpdate?: (event: {
H A DVideo.js203 if (this.props.onFullscreenUpdate) {
204 this.props.onFullscreenUpdate(event.nativeEvent);
262 onFullscreenUpdate: this._nativeOnFullscreenUpdate,
H A DExponentVideo.web.d.ts16 onFullscreenUpdate?: (event: {
H A DExponentVideo.web.js.map1onFullscreenUpdate?: (event: { nativeEvent: VideoFullscreenUpdateEvent }) => void;\n onLoadStart:…
H A DVideo.types.js.map1onFullscreenUpdate?: (event: VideoFullscreenUpdateEvent) => void;\n\n // UI stuff\n\n /**\n * …
H A DVideo.js.map1onFullscreenUpdate) {\n this.props.onFullscreenUpdate(event.nativeEvent);\n }\n };\n\n _…
/expo/packages/expo-av/src/
H A DExponentVideo.web.tsx21 onFullscreenUpdate?: (event: { nativeEvent: VideoFullscreenUpdateEvent }) => void;
52 if (!this.props.onFullscreenUpdate) return;
54 this.props.onFullscreenUpdate({
58 this.props.onFullscreenUpdate({
H A DVideo.types.ts160 onFullscreenUpdate?: (event: VideoFullscreenUpdateEvent) => void;
275 onFullscreenUpdate?: (event: { nativeEvent: VideoFullscreenUpdateEvent }) => void;
H A DVideo.tsx282 if (this.props.onFullscreenUpdate) {
283 this.props.onFullscreenUpdate(event.nativeEvent);
350 onFullscreenUpdate: this._nativeOnFullscreenUpdate,
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/av/video/
H A DVideoViewWrapper.kt50 val onFullscreenUpdate by EventDispatcher<Bundle>() constant
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/av/video/
H A DVideoViewWrapper.kt52 val onFullscreenUpdate by EventDispatcher<Bundle>() constant
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/av/video/
H A DVideoViewWrapper.kt52 val onFullscreenUpdate by EventDispatcher<Bundle>() constant
/expo/packages/expo-av/android/src/main/java/expo/modules/av/video/
H A DVideoViewWrapper.kt52 val onFullscreenUpdate by EventDispatcher<Bundle>() constant
/expo/ios/versioned/sdk48/EXAV/EXAV/Video/
H A DABI48_0_0EXVideoView.h28 @property (nonatomic, copy) ABI48_0_0EXDirectEventBlock onFullscreenUpdate;
/expo/ios/versioned/sdk47/EXAV/EXAV/Video/
H A DABI47_0_0EXVideoView.h28 @property (nonatomic, copy) ABI47_0_0EXDirectEventBlock onFullscreenUpdate;
/expo/packages/expo-av/ios/EXAV/Video/
H A DEXVideoView.h28 @property (nonatomic, copy) EXDirectEventBlock onFullscreenUpdate;
/expo/ios/versioned/sdk49/EXAV/EXAV/Video/
H A DABI49_0_0EXVideoView.h28 @property (nonatomic, copy) ABI49_0_0EXDirectEventBlock onFullscreenUpdate;
/expo/apps/native-component-list/src/screens/AV/
H A DVideoPlayer.tsx46 console.log('onFullscreenUpdate', event);
144 onFullscreenUpdate={handleFullScreenUpdate}
/expo/apps/test-suite/tests/
H A DVideo.js377 const onFullscreenUpdate = (event) => fullscreenUpdates.push(event.fullscreenUpdate); function
384 onFullscreenUpdate={onFullscreenUpdate} field