summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IVisualElementController.cs
blob: 672f47dedb2d3a6e53c1b374f0b6728e8b22d91c (plain)
1
2
3
4
5
6
7
8
9
10
using Xamarin.Forms.Internals;

namespace Xamarin.Forms
{
	public interface IVisualElementController : IElementController
	{
		void NativeSizeChanged();
		void InvalidateMeasure(InvalidationTrigger trigger);
	}
}