From 8f305abf8a33904abb99450c70c25d866c98e3eb Mon Sep 17 00:00:00 2001 From: Saamer Mansoor Date: Sun, 18 Oct 2020 14:16:15 -0400 Subject: [PATCH] fixes/Core-IncorrectURLCausingError * Updated the older Xamarin.com URL that was causing an error in the sample --- WorkingWithWebview/WorkingWithWebview/WebPage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WorkingWithWebview/WorkingWithWebview/WebPage.cs b/WorkingWithWebview/WorkingWithWebview/WebPage.cs index f7af46f1a4..869cabbf00 100755 --- a/WorkingWithWebview/WorkingWithWebview/WebPage.cs +++ b/WorkingWithWebview/WorkingWithWebview/WebPage.cs @@ -7,7 +7,7 @@ public class WebPage : ContentPage public WebPage() { var browser = new WebView(); - browser.Source = "http://xamarin.com"; + browser.Source = "https://dotnet.microsoft.com/apps/xamarin"; Content = browser; } }