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