Hey How can i display and html file with webview on android, the below code works fine for ios

<WebView
ref={webref}
originWhitelist={[‘', 'https://’, ‘http://', 'file://’, ‘sms://*’]}
source={myHtmlFile}
onMessage={(event) => {
if (event.nativeEvent.data === ‘loaded’) {
setLoading(false)
}
}}
/>

the…
webref = useRef<WebView | null>(null)