summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ILayoutController.cs
blob: 56bff7e0df4ee030af82d1f910af0778ae53a482 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace Xamarin.Forms
{
	public interface ILayoutController
	{
		IReadOnlyList<Element> Children { get; }
	}
}