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!
Would be nice to use the Xamarin.Essentials Browser as default.
Browser in the app (LaunchMode) is better user experience.
My current workaround:
Thanks for your work!