Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created October 20, 2019 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/637905951351b8937675b40e2e742956 to your computer and use it in GitHub Desktop.
Save juucustodio/637905951351b8937675b40e2e742956 to your computer and use it in GitHub Desktop.
Example of setting page navigation animations for your Xamarin.Forms applications - http://julianocustodio.com/animationnavigationpage
using Foundation;
using UIKit;
namespace DemoNavigation.iOS
{
[Register("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
global::Xamarin.Forms.Forms.Init();
FormsControls.Touch.Main.Init();
LoadApplication(new App());
return base.FinishedLaunching(app, options);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment