Skip to content

Instantly share code, notes, and snippets.

@olexale
Created September 1, 2017 14:59
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 olexale/4d57839bb68fee90e4d414aeee09c919 to your computer and use it in GitHub Desktop.
Save olexale/4d57839bb68fee90e4d414aeee09c919 to your computer and use it in GitHub Desktop.
[assembly: ExportRenderer(typeof(NavigationPage), typeof(AnimationNavigationRenderer))]
namespace BeatlesApp.iOS
{
public class AnimationNavigationRenderer : Xamarin.Forms.Platform.iOS.NavigationRenderer
{
private AnimationNavigationControllerDelegate _delegate;
public override void ViewDidLoad()
{
base.ViewDidLoad();
_delegate = new AnimationNavigationControllerDelegate();
Delegate = _delegate;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment