maui-linux/Xamarin.Forms.Platform.Android/PlatformConfigurationExtens...

11 строки
330 B
C#

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>();
}
}
}