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

namespace Xamarin.Forms
{
	[Flags]
	public enum ViewState
	{
		Default = 0,
		Prelight = 1,
		Pressed = 1 << 1
	}
}