Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created December 16, 2019 14:43
Show Gist options
  • Save jfversluis/aee9bf80f80d5b4fc1f75dc46896b473 to your computer and use it in GitHub Desktop.
Save jfversluis/aee9bf80f80d5b4fc1f75dc46896b473 to your computer and use it in GitHub Desktop.
Enable the flag
using Xamarin.Forms;
namespace SwipeViewSample
{
public partial class App : Application
{
public App()
{
InitializeComponent();
// Enable your flags here!
Device.SetFlags(new[] {
"SwipeView_Experimental"
});
MainPage = new MainPage();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment