summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Extensions/PlatformConfigurationExtensions.cs
blob: 5f60d86a0c108376aa86fe5e003557902ee0faf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using CurrentPlatform = Xamarin.Forms.PlatformConfiguration.Tizen;

namespace Xamarin.Forms.Platform.Tizen
{
	public static class PlatformConfigurationExtensions
	{
		public static IPlatformElementConfiguration<CurrentPlatform, T> OnThisPlatform<T>(this T element)
			where T : Element, IElementConfiguration<T>
		{
			return (element).On<CurrentPlatform>();
		}
	}
}