Android/iOS device keyboard go to next/previous form-input

Hello again,

I got it working now. To show the buttons it’s necessary to call keyboard.hideKeyboardAccessoryBar(false). I’ve tried it but it doesn’t work in ionViewDidLoad:

ionViewDidLoad() {
    this.platform.ready().then(() => {
      // Okay, so the platform is ready and our plugins are available.
      // Here you can do any higher level native things you might need.
      this.statusBar.styleDefault();
      this.keyboard.hideKeyboardAccessoryBar(false);
    });
  }

When I call it in ngOnInit instead, it works:

ngOnInit() {
    this.platform.ready().then(() => {
      // Okay, so the platform is ready and our plugins are available.
      // Here you can do any higher level native things you might need.
      this.statusBar.styleDefault();
      this.keyboard.hideKeyboardAccessoryBar(false);
    });
  }

And for autocomplete and autocorrect I have to add the directives autocomplete and autocorrect to ion-input.

PS: ionViewDidLoad never gets called on app.component.ts