get height webview from url video react native

Solutions on MaxInterview for get height webview from url video react native by the best coders in the world

showing results for - "get height webview from url video react native"
Mattia
17 May 2019
1<WebView
2    originWhitelist={['*']}
3    scrollEnabled={false}
4    onMessage={onMessage}
5    onNavigationStateChange={navigationChanged}
6injectedJavaScript="window.ReactNativeWebView.postMessage(Math.max(document.body.offsetHeight, document.body.scrollHeight));"
7source={{html: htmlCode}}
8 />
9