I my app, I create a custom navigation rendered, OnPushAsync and PopViewController are override and it works on iOS.
public class NavRenderer : NavigationRenderer
{
protected override async Task<bool> OnPushAsync(Page page, bool animated)
{ ...
}
public override UIViewController PopViewController(bool animated)
{
....
return base.PopViewController(false);
}
Trying to do the same (?) on Android, how can override OnPushAsync and PopViewController?
Tx