Как узнать время загрузки URL-адреса в собственном веб-представлении React?
Я делаю это следующим образом -
<WebView source={{ uri, }} ref={ref => (this.webview = ref)} style={{ marginTop: 0, flex: 1 }} onLoadStart={() => { this.setState({ onLoadStartTime: Date.now() }); }} onLoadEnd={() => { var startTime = this.state.onLoadStartTime; console.log('I am within onLoadEnd start time is, end tme is, time to load web page is', startTime, Date.now(), startTime - Date.now()); }} />