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

15 lines
307 B
C#
Raw Normal View History

using Ooui.Forms.Extensions;
using System.ComponentModel;
using Xamarin.Forms;
namespace Ooui.Forms.Cells
{
public class TextCellRenderer : CellRenderer
{
2018-04-26 23:55:23 +00:00
protected override CellElement CreateCellElement (Cell item)
{
2018-04-26 23:55:23 +00:00
return new TextCellElement ();
}
}
}