forked from cjpearson/cordova-plugin-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 188
Open
Labels
Description
The toolbar remains at the bottom of the page.
This is my footer code:
<ion-footer [keyboardAttach]="content">
<ion-toolbar>
<button ion-button clear class="color--blue text__align--center background--light-gray position--relative" (click)="!isAttaching ? triggerFileUpload($event) : false">
Max 50(Mb)
</button>
<div class="background--blue height--4 position--absolute position--bottom--0 position--left--0" [ngClass]="{'display--hidden': !isAttaching}" #loader style="width: 0px"></div>
</ion-toolbar>
</ion-footer>
I have used these settings:
<preference name="KeyboardResize" value="true" />
<preference name="KeyboardResizeMode" value="ionic" />
And
<preference name="KeyboardResize" value="true" />
<preference name="KeyboardResizeMode" value="native" />
Alongside:
scrollPadding: true,
scrollAssist: true
None of the above did the trick.
Anybody else got another suggestion?
askona