Oleksandr Moroz
Oleksandr Moroz
I have the same problem. I passed HTML code to print function and got next result. Before flip orientation  After flip orientation  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...