My Xamarin Form WebView loads an external webpage like this,
<WebView VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" Source="<SOME_URL_HERE>" />
I need to hide the web page's menu injecting JavaScript or CSS. I also need to hide some unnecessary elements of a web page while it is loading through the app.
What is the best way to achieve this requirement? If there is any other way than JavaScript or CSS, that is also acceptable.