Drastic.Flex

Binding of Flex for .NET iOS Projects


Keywords
ios, tvos, catalyst, mac, Flex
License
MIT
Install
Install-Package Drastic.Flex -Version 1.0.2

Documentation

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