Answers for "webview not showing expo"

0

webview not showing expo

setting width and height for webview containerStyle fixes this
<WebView
	source={{ uri: "https://google.com" }}
	containerStyle={{
		width: '100%',
		height: 500,
		backgroundColor: "white",
		flex: 1,
	}}
/>
Posted by: Guest on August-09-2021

Browse Popular Code Answers by Language