Home
last modified time | relevance | path

Searched refs:onLoad (Results 1 – 25 of 74) sorted by relevance

123

/expo/packages/expo-image/build/web/
H A DgetImageWrapperEventHandler.js3 onLoad: (event) => {
7 events?.onLoad?.forEach((e) => e?.(event));
11 events?.onLoad?.forEach((e) => e?.(event));
H A DgetImageWrapperEventHandler.js.map1onLoad: (event) => {\n if (typeof window !== 'undefined') {\n // this ensures the anim…
H A DgetImageWrapperEventHandler.d.ts4 onLoad: (event: any) => void;
H A DImageWrapper.types.d.ts11 onLoad?: OnLoadEvent[];
/expo/packages/expo-image/src/web/
H A DgetImageWrapperEventHandler.ts9 onLoad: (event) => {
13 events?.onLoad?.forEach((e) => e?.(event));
16 events?.onLoad?.forEach((e) => e?.(event));
H A DImageWrapper.types.ts18 onLoad?: OnLoadEvent[];
/expo/packages/expo-image/build/
H A DExpoImage.js19 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 DExpoImage.web.js23 function onLoadAdapter(onLoad) { argument
26 onLoad?.({
49 …holder, contentFit, contentPosition, placeholderContentFit, cachePolicy, onLoad, transition, onErr…
75 onLoad: [onLoadAdapter(onLoad), onLoadEnd, onReady],
H A DExpoImage.web.d.ts7 …holder, contentFit, contentPosition, placeholderContentFit, cachePolicy, onLoad, transition, onErr…
H A DExpoImage.d.ts7 onLoad: (event: NativeSyntheticEvent<ImageLoadEventData>) => void;
/expo/apps/native-component-list/src/screens/Image/
H A DImageEventsScreen.tsx20 const onLoad = useCallback(
22 logs.push(`�� onLoad: ${JSON.stringify(event, null, 2)}`);
65 onLoad={onLoad}
/expo/packages/expo-image/src/
H A DExpoImage.web.tsx30 function onLoadAdapter(onLoad?: (event: ImageLoadEventData) => void) {
33 onLoad?.({
66 onLoad,
129 onLoad: [onLoadAdapter(onLoad), onLoadEnd, onReady],
H A DExpoImage.tsx35 onLoad = (event: NativeSyntheticEvent<ImageLoadEventData>) => {
36 this.props.onLoad?.(withDeprecatedNativeEvent(event));
101 onLoad={this.onLoad}
/expo/packages/expo-av/src/
H A DVideo.types.ts143 onLoad?: (status: AVPlaybackStatus) => void;
271 onLoad?: (event: { nativeEvent: AVPlaybackStatus }) => void;
H A DExponentVideo.web.tsx23 onLoad: (event: { nativeEvent: AVPlaybackStatus }) => void;
81 if (!this.props.onLoad) {
84 this.props.onLoad(event);
/expo/packages/expo-av/build/
H A DVideo.types.d.ts121 onLoad?: (status: AVPlaybackStatus) => void;
241 onLoad?: (event: {
H A DExponentVideo.web.js42 if (!this.props.onLoad) {
45 this.props.onLoad(event);
H A DVideo.js185 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 DABI48_0_0ImageEventEmitter.h20 void onLoad() const;
H A DABI48_0_0ImageEventEmitter.cpp16 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 DABI49_0_0ImageEventEmitter.h20 void onLoad() const;
H A DABI49_0_0ImageEventEmitter.cpp16 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 DABI47_0_0ImageEventEmitter.h20 void onLoad() const;
H A DABI47_0_0ImageEventEmitter.cpp17 void ImageEventEmitter::onLoad() const { in onLoad() function in ABI47_0_0facebook::ABI47_0_0React::ImageEventEmitter
/expo/docs/pages/modules/
H A Dnative-view-tutorial.mdx269 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 …]

123