anyone can help me on fixing excessive navigation bar button padding in Xamarin iOS. I am using default UI navigation bar and adding left bar button as well as right bar button. it looks weird when I'm adding number of right bar button because of the unwanted padding between the UI bar buttons.Manually im not setting any frames for UI bar button items
leftButtons [0] = customButton;
leftButtons [1] = logoButton;
rightButtons [0] = networkButton;
rightButtons[1] = refreshButton;
viewController.updateStatusBar (false,"TITLE",rightButtons,leftButtons);
Any help to reduce this spacing is well-appreciated thanks in advance :)