Home
last modified time | relevance | path

Searched refs:nativeRef (Results 1 – 8 of 8) sorted by relevance

/expo/packages/expo-video/build/
H A DVideoView.js10 nativeRef = React.createRef(); field in VideoView
13 this.nativeRef.current?.enterFullscreen();
17 this.nativeRef.current?.exitFullscreen();
22 … return React.createElement(NativeVideoView, { ...props, player: playerId, ref: this.nativeRef });
H A DVideoView.d.ts5 nativeRef: React.RefObject<unknown>;
H A DVideoView.js.map1nativeRef = React.createRef();\n\n enterFullscreen() {\n // @ts-expect-error\n this.nativeR…
/expo/packages/expo-gl/build/
H A DGLView.js54 nativeRef = null; field in GLView
69 _setNativeRef = (nativeRef) => {
71 this.props.nativeRef_EXPERIMENTAL(nativeRef);
73 this.nativeRef = nativeRef;
97 return await ExponentGLViewManager.startARSessionAsync(findNodeHandle(this.nativeRef));
H A DGLView.d.ts39 nativeRef: ComponentOrHandle;
42 _setNativeRef: (nativeRef: ComponentOrHandle) => void;
H A DGLView.js.map1nativeRef: ComponentOrHandle = null;\n exglCtxId?: number;\n\n render() {\n const {\n on…
/expo/packages/expo-video/src/
H A DVideoView.tsx14 nativeRef = React.createRef();
18 this.nativeRef.current?.enterFullscreen();
23 this.nativeRef.current?.exitFullscreen();
30 return <NativeVideoView {...props} player={playerId} ref={this.nativeRef} />;
/expo/packages/expo-gl/src/
H A DGLView.tsx89 nativeRef: ComponentOrHandle = null;
120 _setNativeRef = (nativeRef: ComponentOrHandle): void => {
122 this.props.nativeRef_EXPERIMENTAL(nativeRef);
124 this.nativeRef = nativeRef;
156 return await ExponentGLViewManager.startARSessionAsync(findNodeHandle(this.nativeRef));