summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchungryeol lim <cdark.lim@samsung.com>2017-01-02 17:02:13 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-04-24 13:36:45 +0900
commitcd2a0de3583446ab472a3aac21b3658ec7d40381 (patch)
treeb97bd531f91c2c5588e99e774effb918f9f4ba2a
parent9f4024215376164a8fc49f4fa64cbd345ea0a5e1 (diff)
downloadxamarin-forms-cd2a0de3583446ab472a3aac21b3658ec7d40381.tar.gz
xamarin-forms-cd2a0de3583446ab472a3aac21b3658ec7d40381.tar.bz2
xamarin-forms-cd2a0de3583446ab472a3aac21b3658ec7d40381.zip
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 <cdark.lim@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/Platform.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Platform.cs b/Xamarin.Forms.Platform.Tizen/Platform.cs
index ab073007..c7a89b06 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) =>