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