Forcing iOS style popover in Android Device not working

I am looking to use PopOver with iOS style in my Android device. In my browser it works fine.

But in the actual device, a empty space is shown above the nav bar and the popover hides the menu button.

Also, when we click on the menu item inside popover, coloring is not down as it happens in browser. In browser, a grey background is shown after the click or touch.

module.config(function($cordovaAppRateProvider) {
    document.body.classList.remove('platform-ios');
    document.body.classList.remove('platform-android');
    document.body.classList.remove('platform-ionic');
    document.body.classList.add('platform-ios');
});

Even when using ionic format, the button gets hidden by the popover.

Any help or inputs on this issue?

Please let me know if Ionic PopOver is not yet matured module to be used. If it’s so I will see on other options.

I really like the iOS style.