From 45111944ef0910126e08e553aec28503bb000bb3 Mon Sep 17 00:00:00 2001 From: chungryeol lim Date: Mon, 2 Jan 2017 17:02:13 +0900 Subject: [PATCH] Change platform class access modifier - Requires GetRenderer in custom renderer implementation. - Other platforms (iOS, Android, UWP) are also open to the public. Change-Id: I9beb45b63b91ee11b910fe486ec99e124c8ac793 Signed-off-by: chungryeol lim --- Xamarin.Forms.Platform.Tizen/Platform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xamarin.Forms.Platform.Tizen/Platform.cs b/Xamarin.Forms.Platform.Tizen/Platform.cs index ab07300..c7a89b0 100644 --- a/Xamarin.Forms.Platform.Tizen/Platform.cs +++ b/Xamarin.Forms.Platform.Tizen/Platform.cs @@ -6,7 +6,7 @@ using ElmSharp; namespace Xamarin.Forms.Platform.Tizen { - internal class Platform : BindableObject, IPlatform, INavigation, IDisposable + public class Platform : BindableObject, IPlatform, INavigation, IDisposable { internal static readonly BindableProperty RendererProperty = BindableProperty.CreateAttached("Renderer", typeof(IVisualElementRenderer), typeof(Platform), default(IVisualElementRenderer), propertyChanged: (bindable, oldvalue, newvalue) => -- 2.7.4