Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit 1e99953

Browse files
authored
URLs updated. (#720)
1 parent 6b970c9 commit 1e99953

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

UserInterface/WebView/WebViewSample/WebViewSample/Code Implementation/LinkToInAppCode.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public LinkToInAppCode ()
2828
/// </summary>
2929
void navButtonClicked (object sender, EventArgs e)
3030
{
31-
this.Navigation.PushAsync (new InAppBrowserCode ("http://www.xamarin.com/"));
31+
this.Navigation.PushAsync (new InAppBrowserCode ("https://dotnet.microsoft.com/apps/xamarin"));
3232
}
3333
}
3434
}

UserInterface/WebView/WebViewSample/WebViewSample/Code Implementation/LoadingLabelCode.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public LoadingLabelCode ()
1919
//Loading label should not render by default.
2020
labelLoading = new Label () { Text = "Loading...", IsVisible = false};
2121

22-
webView = new WebView () { HeightRequest = 1000, WidthRequest = 1000, Source = "http://www.xamarin.com/" };
22+
webView = new WebView () { HeightRequest = 1000, WidthRequest = 1000, Source = "https://dotnet.microsoft.com/apps/xamarin" };
2323

2424
webView.Navigated += webviewNavigated;
2525
webView.Navigating += webviewNavigating;

UserInterface/WebView/WebViewSample/WebViewSample/XAML Implementation/LinkToInAppXaml.xaml.cs

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public LinkToInAppXaml ()
1717
/// <param name="e">E.</param>
1818
async void navButtonClicked(object sender, EventArgs e)
1919
{
20-
await Navigation.PushAsync (new InAppBrowserXaml ("http://www.xamarin.com/"));
20+
await Navigation.PushAsync (new InAppBrowserXaml ("https://dotnet.microsoft.com/apps/xamarin"));
2121
}
2222
}
2323
}

UserInterface/WebView/WebViewSample/WebViewSample/XAML Implementation/LoadingLabelXaml.xaml

100755100644
+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<StackLayout>
77
<!--Loading label should not render by default.-->
88
<Label x:Name="labelLoading" Text="Loading..." IsVisible="false" />
9-
<WebView HeightRequest="1000" WidthRequest="1000" Source="http://www.xamarin.com" Navigated="webviewNavigated" Navigating="webviewNavigating" />
9+
<WebView HeightRequest="1000" WidthRequest="1000" Source="https://dotnet.microsoft.com/apps/xamarin" Navigated="webviewNavigated" Navigating="webviewNavigating" />
1010
</StackLayout>
1111
</ContentPage>

WorkingWithWebview/WorkingWithWebview/WebAppPage.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public WebAppPage()
1818
};
1919
openUrl.Clicked += async (sender, e) =>
2020
{
21-
await Launcher.OpenAsync("http://xamarin.com/evolve");
21+
await Launcher.OpenAsync("https://dotnet.microsoft.com/apps/xamarin");
2222
};
2323

2424
var makeCall = new Button

0 commit comments

Comments
 (0)