mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
23 lines
563 B
C#
23 lines
563 B
C#
using TINK.Model.Device;
|
|
using Xamarin.Forms;
|
|
using TINK.iOS.Device;
|
|
using UIKit;
|
|
using Foundation;
|
|
|
|
[assembly: Dependency(typeof(ExternalBrowseService))]
|
|
namespace TINK.iOS.Device
|
|
{
|
|
public class ExternalBrowseService : IExternalBrowserService
|
|
{
|
|
/// <summary> Opens an external browser. </summary>
|
|
/// <param name="p_strUrl">Url to open.</param>
|
|
public void OpenUrl(string p_strUrl)
|
|
{
|
|
var l_oUrl = NSUrl.FromString(p_strUrl);
|
|
if (l_oUrl == null)
|
|
return;
|
|
|
|
UIApplication.SharedApplication.OpenUrl(l_oUrl);
|
|
}
|
|
}
|
|
}
|