Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created October 20, 2019 19:09
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/64926e11de7c0f631da0efca696ff836 to your computer and use it in GitHub Desktop.
Save juucustodio/64926e11de7c0f631da0efca696ff836 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 FormsControls.Base;
using Xamarin.Forms;
namespace DemoNavigation
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new AnimationNavigationPage(new MainPage());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment