MarkdownView icon indicating copy to clipboard operation
MarkdownView copied to clipboard

Browser

Open Suplanus opened this issue 6 years ago • 0 comments

Would be nice to use the Xamarin.Essentials Browser as default. Browser in the app (LaunchMode) is better user experience.

My current workaround:

markdownView.NavigateToLink = NavigateToLinkAsync;
private static async void NavigateToLinkAsync(string obj)
{
    var options = new BrowserLaunchOptions
    {
        LaunchMode = BrowserLaunchMode.SystemPreferred,
    };
    await Browser.OpenAsync(obj, options);
}

Thanks for your work!

Suplanus avatar May 08 '19 16:05 Suplanus