summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IPlatform.cs
blob: 2ff028795ca55302a2271a4a3d92b7619e9e10de (plain)
1
2
3
4
5
6
7
8
9
10
using System.ComponentModel;

namespace Xamarin.Forms.Internals
{
	[EditorBrowsable(EditorBrowsableState.Never)]
	public interface IPlatform
	{
		SizeRequest GetNativeSize(VisualElement view, double widthConstraint, double heightConstraint);
	}
}