/Drastic.Flex

.NET Binding of FLEX, An in-app debugging and exploration tool for iOS

Primary LanguageC#MIT LicenseMIT

NuGet Version License

Drastic.Flex

Drastic.Flex is a binding of Flex for .NET iOS.

How To

  • Install the Nuget.
  • Run Drastic.FLEX.FLEXManager.SharedManager.ShowExplorer(); to show the explorer.

MAUI Notes

When using with MAUI, depending on when you call for ShowExplorer(), its contents may be malformed. For best results, show it after your initial page contents have loaded.

public partial class MainPage : ContentPage
{
    int count = 0;

    public MainPage()
    {
        InitializeComponent();
    }

    protected override void OnHandlerChanged()
    {
        base.OnHandlerChanged();
#if IOS
        Drastic.FLEX.FLEXManager.SharedManager.ShowExplorer();
#endif
    }
}