Ooui-tws-port/Ooui.Forms/Cells/TextCellRenderer.cs

15 lines
307 B
C#

using Ooui.Forms.Extensions;
using System.ComponentModel;
using Xamarin.Forms;
namespace Ooui.Forms.Cells
{
public class TextCellRenderer : CellRenderer
{
protected override CellElement CreateCellElement (Cell item)
{
return new TextCellElement ();
}
}
}