I need to shrink the size of the WebView and its contents to a smaller thumbnail type view.
I have html content of templates for postcards showing in a Xamarin Forms WebView. The size of the html is hardcoded in the styles. I want to display this content to the user showing the full html instead of showing part of the web page and having to scroll within the WebView to see all of it.
body {
width: 6.25in;
height: 4.5in;
margin: 0;
padding: 0;
}
If I put in smaller heightrequest and widthrequest, only shows part of the page. So I thought if I put in a big enough widthrequest and use scale to shrink it down, it would work, however the width of the screen isn't big enough and gives the screenwidth size instead, so scale doesn't work either.