summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS/Extensions/PlatformConfigurationExtensions.cs
blob: f61837f2c327634d55c12ead2268d47b8b53b13c (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Xamarin.Forms.Platform.iOS
{
	public static class PlatformConfigurationExtensions
	{
		public static IPlatformElementConfiguration<PlatformConfiguration.iOS, T> OnThisPlatform<T>(this T element) 
			where T : Element, IElementConfiguration<T>
		{
			return (element).On<PlatformConfiguration.iOS>();
		}
	}
}