Lines Matching refs:onLoad
257 …e onLoad={...} />`. We can use the [Events definition component](/modules/module-api/#events) to d…
261 …nd make ExpoWebView extend `WKNavigationDelegate`. We can then call the `onLoad` from that delegat…
269 let onLoad = EventDispatcher()
284 onLoad([
292 And we need to indicate in ExpoWebViewModule that the `View` has an `onLoad` event.
302 Events("onLoad")
317 On Android, we need to add override the `onPageFinished` function. We can then call the `onLoad` ev…
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")
375 …he `nativeEvent` property of the event, so to access the `url` from the `onLoad` event we would re…
388 onLoad?: (event: { nativeEvent: OnLoadEvent }) => void;
410 onLoad={event => alert(`loaded ${event.nativeEvent.url}`)}
459 onLoad={() => setIsLoading(false)}