maui-linux/Xamarin.Forms.Platform.iOS/PlatformEffect.cs

13 строки
231 B
C#

#if __MOBILE__
using UIKit;
namespace Xamarin.Forms.Platform.iOS
#else
using UIView = AppKit.NSView;
namespace Xamarin.Forms.Platform.MacOS
#endif
{
public abstract class PlatformEffect : PlatformEffect<UIView, UIView>
{
}
}