summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IItemsView.cs
blob: 7f968769778345ef5cb0fa66bef00aa30e48d130 (plain)
1
2
3
4
5
6
7
8
9
namespace Xamarin.Forms
{
	internal interface IItemsView<T> where T : BindableObject
	{
		T CreateDefault(object item);
		void SetupContent(T content, int index);
		void UnhookContent(T content);
	}
}