How to keep button above keypad on iOS ... keyboard open doesn't reduce the view height

thanks for your message @Srijith

  1. thanks for the “type=‘tel’” trick. However I need the “.” to separate decimal numbers…

  2. The OK button is not in a ion-footer directive, but just like this :slight_smile:

    <button ng-if="!data.firstNavParam" class="nextSlideButton button button-full" ng-click="goToNextSlide()">
     OK
    </button>  
    

css :

.button.button-full.nextSlideButton {
	position: absolute;
	bottom: 0;
	margin-bottom: 0;
	left: 0;
        height: 53px;
	background-color: #06b4c8;
}

If I use keyboard-attach on the OK button, it moves up the keyboard, but covers the rest !! :cold_sweat:
It’s like the height of the view doesn’t change when ios keyboard pops up, whereas it changes on android !!! Any idea what’s happening ?

I have to mention that this code is within a slidebox, but I just tested without the slidebox (normal view) and it’s the same bug.

  1. thanks let me know !