| /expo/packages/expo-image/build/web/ |
| H A D | getImageWrapperEventHandler.js | 3 onLoad: (event) => { 7 events?.onLoad?.forEach((e) => e?.(event)); 11 events?.onLoad?.forEach((e) => e?.(event));
|
| H A D | getImageWrapperEventHandler.js.map | 1 …onLoad: (event) => {\n if (typeof window !== 'undefined') {\n // this ensures the anim…
|
| H A D | getImageWrapperEventHandler.d.ts | 4 onLoad: (event: any) => void;
|
| H A D | ImageWrapper.types.d.ts | 11 onLoad?: OnLoadEvent[];
|
| /expo/packages/expo-image/src/web/ |
| H A D | getImageWrapperEventHandler.ts | 9 onLoad: (event) => { 13 events?.onLoad?.forEach((e) => e?.(event)); 16 events?.onLoad?.forEach((e) => e?.(event));
|
| H A D | ImageWrapper.types.ts | 18 onLoad?: OnLoadEvent[];
|
| /expo/packages/expo-image/build/ |
| H A D | ExpoImage.js | 19 onLoad = (event) => { field in ExpoImage 20 this.props.onLoad?.(withDeprecatedNativeEvent(event)); 70 …Label ?? alt, style: resolvedStyle, onLoadStart: this.onLoadStart, onLoad: this.onLoad, onProgress…
|
| H A D | ExpoImage.web.js | 23 function onLoadAdapter(onLoad) { argument 26 onLoad?.({ 49 …holder, contentFit, contentPosition, placeholderContentFit, cachePolicy, onLoad, transition, onErr… 75 onLoad: [onLoadAdapter(onLoad), onLoadEnd, onReady],
|
| H A D | ExpoImage.web.d.ts | 7 …holder, contentFit, contentPosition, placeholderContentFit, cachePolicy, onLoad, transition, onErr…
|
| H A D | ExpoImage.d.ts | 7 onLoad: (event: NativeSyntheticEvent<ImageLoadEventData>) => void;
|
| /expo/apps/native-component-list/src/screens/Image/ |
| H A D | ImageEventsScreen.tsx | 20 const onLoad = useCallback( 22 logs.push(` onLoad: ${JSON.stringify(event, null, 2)}`); 65 onLoad={onLoad}
|
| /expo/packages/expo-image/src/ |
| H A D | ExpoImage.web.tsx | 30 function onLoadAdapter(onLoad?: (event: ImageLoadEventData) => void) { 33 onLoad?.({ 66 onLoad, 129 onLoad: [onLoadAdapter(onLoad), onLoadEnd, onReady],
|
| H A D | ExpoImage.tsx | 35 onLoad = (event: NativeSyntheticEvent<ImageLoadEventData>) => { 36 this.props.onLoad?.(withDeprecatedNativeEvent(event)); 101 onLoad={this.onLoad}
|
| /expo/packages/expo-av/src/ |
| H A D | Video.types.ts | 143 onLoad?: (status: AVPlaybackStatus) => void; 271 onLoad?: (event: { nativeEvent: AVPlaybackStatus }) => void;
|
| H A D | ExponentVideo.web.tsx | 23 onLoad: (event: { nativeEvent: AVPlaybackStatus }) => void; 81 if (!this.props.onLoad) { 84 this.props.onLoad(event);
|
| /expo/packages/expo-av/build/ |
| H A D | Video.types.d.ts | 121 onLoad?: (status: AVPlaybackStatus) => void; 241 onLoad?: (event: {
|
| H A D | ExponentVideo.web.js | 42 if (!this.props.onLoad) { 45 this.props.onLoad(event);
|
| H A D | Video.js | 185 if (this.props.onLoad) { 186 this.props.onLoad(event.nativeEvent); 259 onLoad: this._nativeOnLoad,
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/image/ |
| H A D | ABI48_0_0ImageEventEmitter.h | 20 void onLoad() const;
|
| H A D | ABI48_0_0ImageEventEmitter.cpp | 16 void ImageEventEmitter::onLoad() const { in onLoad() function in ABI48_0_0facebook::ABI48_0_0React::ImageEventEmitter
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/image/ |
| H A D | ABI49_0_0ImageEventEmitter.h | 20 void onLoad() const;
|
| H A D | ABI49_0_0ImageEventEmitter.cpp | 16 void ImageEventEmitter::onLoad() const { in onLoad() function in ABI49_0_0facebook::ABI49_0_0React::ImageEventEmitter
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/image/ |
| H A D | ABI47_0_0ImageEventEmitter.h | 20 void onLoad() const;
|
| H A D | ABI47_0_0ImageEventEmitter.cpp | 17 void ImageEventEmitter::onLoad() const { in onLoad() function in ABI47_0_0facebook::ABI47_0_0React::ImageEventEmitter
|
| /expo/docs/pages/modules/ |
| H A D | native-view-tutorial.mdx | 269 let onLoad = EventDispatcher() 284 onLoad([ 292 And we need to indicate in ExpoWebViewModule that the `View` has an `onLoad` event. 302 Events("onLoad") 330 private val onLoad by EventDispatcher() 340 onLoad(mapOf("url" to url)) 349 And we need to indicate in ExpoWebViewModule that the `View` has an `onLoad` event. 363 Events("onLoad") 388 onLoad?: (event: { nativeEvent: OnLoadEvent }) => void; 410 onLoad={event => alert(`loaded ${event.nativeEvent.url}`)} [all …]
|