summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen
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-10-23 13:34:25 +0900
commit9f195bf190b6909a2cde5f3c89eb7b1211b508ad (patch)
treea2cc7180a2e093a8e3ce6165088898d7115cacea /Xamarin.Forms.Platform.Tizen
parent5bdb5b0b79cf503e5afe4b6feae42fea7ba1a8d5 (diff)
downloadxamarin-forms-9f195bf190b6909a2cde5f3c89eb7b1211b508ad.tar.gz
xamarin-forms-9f195bf190b6909a2cde5f3c89eb7b1211b508ad.tar.bz2
xamarin-forms-9f195bf190b6909a2cde5f3c89eb7b1211b508ad.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>
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen')
-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) =>