Skip to content

drasticactions/Drastic.Flex

Repository files navigation

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
    }
}

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published