React webview white screen after splash image

i want to remove white screen

import React, { useRef, useState, useCallback, useEffect } from “react”;
import { BackHandler, Platform, StyleSheet,ActivityIndicator } from “react-native”;
import { WebView } from “react-native-webview”;

export default function App() {
const webView = useRef();

const [canGoBack, setCanGoBack] = useState(false);
const handleBack = useCallback(() => {
if (canGoBack && webView.current) {
webView.current.goBack();
return true;
}
return false;
}, [canGoBack]);

useEffect(() => {
BackHandler.addEventListener(“hardwareBackPress”, handleBack);
return () => {
BackHandler.removeEventListener(“hardwareBackPress”, handleBack);
};
}, [handleBack]);
const App = () => (
<View style={[styles.container, styles.horizontal]}>





);

const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: ‘center’,
},
horizontal: {
flexDirection: ‘row’,
justifyContent: ‘space-around’,
padding: 10,
},
});

const platformStyles = StyleSheet.create({
webView: Platform.OS === ‘ios’
? { marginTop: 30, marginBottom: 40 }
: { marginTop: 30 }
});

return (
<WebView
ref={webView}
source={{ uri: “www.naver.com/” }}
style = {platformStyles.webView}
onLoadProgress={(event) => setCanGoBack(event.nativeEvent.canGoBack)}
/>
);

}