Xamarin Forms - WebViewSource shows blank page
Xamarin Forms - WebViewSource shows blank page I have index.html and Posts1 - 10.html inside a folder called CachedPosts inside Environment.GetFolderPath(Environment.SpecialFolder.Personal) . My goal is to load index.html which has href links to load Posts1 - 10.html . index.html Posts1 - 10.html CachedPosts Environment.GetFolderPath(Environment.SpecialFolder.Personal) index.html Posts1 - 10.html You may tell me to use the Assets folder, but.. Posts1 - 10.html & index.html are being saved programmatically. Posts1 - 10.html index.html C# Code : C# Code So my issue lies in the "else" area. index.html loads, but whenever I click on the href link inside index.html , it loads a blank page :/ index.html index.html index.html Code : index.html Code <html> <body> <a href="Posts1.html"><h2>Interesting Stuff 1</h2></a> <a href="Posts2.html"><h2>Interesting Stuff 2</h2></a> </body> </html...