I am using "WebView" in react-native for rendering a web page. The web page doesn't have mobile-friendly UI.
When I open it in Chrome Browser, it looks like below. AND I WANT TO RENDER IT LIKE BELOW
But When I render below code, it looks like the image shown below.
Please see that I have tried different props automaticallyAdjustContentInsets = {false}
, scalesPageToFit={false}
. But it's not giving me the desire output.
render(){
const URL = "https://stellarterm.com";
return(
<WebView
source={{URL}}
/>
Result
Please feel free to suggest any solution if you have. Any third party library will also be okay.