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-03-24 13:18:58 +0900
commit45111944ef0910126e08e553aec28503bb000bb3 (patch)
treeb1817aabed344ff2419c00c299f773035873f585 /Xamarin.Forms.Platform.Tizen
parent56357a6e197e859896936e69bbacc9ea4a377d77 (diff)
downloadxamarin-forms-45111944ef0910126e08e553aec28503bb000bb3.tar.gz
xamarin-forms-45111944ef0910126e08e553aec28503bb000bb3.tar.bz2
xamarin-forms-45111944ef0910126e08e553aec28503bb000bb3.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) =>