19 lines
519 B
C#

#if !(ANDROID || WINDOWS || IOS || MACCATALYST)
using gehGassi.Toolkit.Views.ContentButton;
namespace gehGassi.Toolkit.Handlers.ContentButton
{
public partial class ContentButtonHandler : Microsoft.Maui.Handlers.ElementHandler<IContentButton, object>
{
public ContentButtonHandler(IPropertyMapper mapper, CommandMapper commandMapper) : base(mapper, commandMapper)
{
}
protected override object CreatePlatformElement() => throw new NotSupportedException();
}
}
#endif