Created
December 16, 2019 14:43
-
-
Save jfversluis/aee9bf80f80d5b4fc1f75dc46896b473 to your computer and use it in GitHub Desktop.
Enable the flag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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