summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPageController.cs
blob: 298cffc9a4c43915899bf63b5e5178a2979a8103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections.ObjectModel;

namespace Xamarin.Forms
{
	public interface IPageController
	{
		Rectangle ContainerArea { get; set; }

		bool IgnoresContainerArea { get; set; }

		ObservableCollection<Element> InternalChildren { get; }

		void SendAppearing();

		void SendDisappearing();
	}
}