File: Handlers\MenuFlyoutSeparator\IMenuFlyoutSeparatorHandler.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
#if IOS || MACCATALYST
using PlatformView = UIKit.UIMenu;
#elif WINDOWS
using PlatformView = Microsoft.UI.Xaml.Controls.MenuFlyoutSeparator;
#elif (NETSTANDARD || !PLATFORM) || (NET6_0_OR_GREATER && !IOS)
using PlatformView = System.Object;
#endif
 
namespace Microsoft.Maui.Handlers
{
	public interface IMenuFlyoutSeparatorHandler : IElementHandler
	{
		new PlatformView PlatformView { get; }
		new IMenuFlyoutSeparator VirtualView { get; }
	}
}