maui-linux/Xamarin.Forms.Platform.iOS/Renderers/IShellFlyoutContentRenderer.cs

14 строки
237 B
C#

using System;
using UIKit;
namespace Xamarin.Forms.Platform.iOS
{
public interface IShellFlyoutContentRenderer
{
UIViewController ViewController { get; }
event EventHandler WillAppear;
event EventHandler WillDisappear;
}
}