2018-04-26 23:55:23 +00:00
|
|
|
|
using System;
|
2018-01-05 12:10:57 +00:00
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Ooui.Forms.Cells
|
|
|
|
|
{
|
2018-04-26 23:55:23 +00:00
|
|
|
|
public class EntryCellRenderer : TextCellRenderer
|
2018-01-05 12:10:57 +00:00
|
|
|
|
{
|
2018-04-26 23:55:23 +00:00
|
|
|
|
protected override CellElement CreateCellElement (Cell item)
|
2018-01-05 12:10:57 +00:00
|
|
|
|
{
|
2018-04-26 23:55:23 +00:00
|
|
|
|
return new EntryCellElement ();
|
2018-01-05 12:10:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|