Ooui-tws-port/Ooui.Forms/PlatformRenderer.cs

18 lines
267 B
C#
Raw Normal View History

2017-11-09 09:38:19 +00:00
using System;
using Xamarin.Forms;
namespace Ooui.Forms
{
public class PlatformRenderer : Ooui.Div
{
readonly Platform platform;
public Platform Platform => platform;
public PlatformRenderer (Platform platform)
{
this.platform = platform;
}
}
}