There\'s a lot of discussion about the soft keyboard but I haven\'t found a good solution for my problem yet.
I have a resize function like:
$(window
Working fine in current version of chrome webview. I just implemented window resize functionality in Angular by using below code.
@HostListener('window:resize', ['$event'])
onResize(event) {
// Do you handling here.
}
Note: Same can be achieved by using
window.addEventListener('resize', () => {
// Do handling here
});