Drastic.Flex is a binding of Flex for .NET iOS.
- Install the Nuget.
- Run
Drastic.FLEX.FLEXManager.SharedManager.ShowExplorer();
to show the explorer.
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
}
}