2018-01-05 12:10:57 +00:00
|
|
|
|
using Ooui.Forms.Renderers;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
using Xamarin.Forms.Internals;
|
|
|
|
|
|
|
|
|
|
namespace Ooui.Forms.Cells
|
|
|
|
|
{
|
|
|
|
|
public class ImageCellRenderer : TextCellRenderer
|
|
|
|
|
{
|
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 ImageCellElement ();
|
2018-01-05 12:10:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|