18 lines
267 B
C#
18 lines
267 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|