summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IItemsView.cs
blob: d2c721bad8ce4441517cf8e982fa3168d0f49fd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections;

namespace Xamarin.Forms
{
	public interface IItemsView<T> where T : BindableObject
	{
		T CreateDefault(object item);
		void SetupContent(T content, int index);
		void UnhookContent(T content);
	}
}