Ionic 2: Allow Tabs

I cannot find a way to change the keyboard behavior in my application. I tried using the ionic keyboard plugin but nothing changed.

import { Keyboard } from '@ionic-native/keyboard';

export class NewRepositioningModal {
    constructor(private keyboard: Keyboard) {

    // I've tried true as well
    this.keyboard.hideKeyboardAccessoryBar(false);
}

      

but I never see any bars and the only button on the keyboard says "Go". I'm trying to include tabs between inputs and can't even show the Next button.

+3


source to share





All Articles