Skip to content

Instantly share code, notes, and snippets.

@mika-f
Last active December 7, 2015 14:46
Show Gist options
  • Save mika-f/f72bf87980c3e4d593fe to your computer and use it in GitHub Desktop.
Save mika-f/f72bf87980c3e4d593fe to your computer and use it in GitHub Desktop.
Launch other apps from Xamarin.Forms
// Open Google Chrome from Xamarin.Forms (Simplicity)
var url = "https://google.co.jp";
if(url.StartsWith("https://"))
{
url = url.Replace("https://", "googlechromes://");
}
else
{
url = url.Replace("http://", "googlechrome://");
}
Device.OpenUri(new Uri(url));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment