Page layout issue

Hello
i’ve noticed something wrong with this plugin on iOS

with this code

cordova.plugins.email.open({
subject: ‘My data’,
body: ‘hello’,
attachments: [‘base64:dati.html//’ + btoa(corpo_mail)]
});

Native overlay mail opens and i should add email of recipient… but when I click in any input (recipient, subject, body) F7 app zoomin and on top, bottom, left and right app go out from page layout. (about 30px)

anyone have the same problem?

1 Like

@nolimits4web seems that on focus event of mail native sheet inputs, view width and height of app is re-calculated, and when native sheet is closed, app view is bigger than the monitor device (about 30px on each edge)
if u want i can send a little video

workaround iOS 13
into callback add

StatusBar.hide();
StatusBar.show();

source