Oleksandr Moroz

Results 3 comments of Oleksandr Moroz

I have the same problem. I passed HTML code to print function and got next result. Before flip orientation ![IMG_0637](https://user-images.githubusercontent.com/44264209/205100760-0f766545-62a0-4cf5-b998-25681b1dff5b.PNG) After flip orientation ![IMG_0638](https://user-images.githubusercontent.com/44264209/205100798-4da6d855-5450-4900-9a28-989b9005964d.jpg) On android all works fine.

This works for me ``` export abstract class AriaFocusFixer implements ViewWillLeave { public ionViewWillLeave(): void { const activeElement = document.activeElement as HTMLElement; activeElement?.blur(); } } export class SomePage extends AriaFocusFixer...

@pkunszt Sorry for the late answer, indeed this fix doesn't work for overlay components like modal, popovers etc. But it works fine for pages involved in router navigation, just make...