When i add with PushViewController the navigation header remains visible with this code:
View viewp = new View();
NavigationController.PushViewController(viewp, false);
but when i add with PresentViewControllerAsync the navigation header is hidden, what is wrong?
viewp.ModalPresentationStyle = UIModalPresentationStyle.FullScreen;
this.PresentViewController(viewp, true, null);
i am using ios13, what is my wrong? the buttons right and left do not show