Suggestions bar above keyboard with ionic = "autocorrect"?

In previous versions of ionic 2, I believe we were able to show a suggestions bar above the keyboard, where the keyboard was shown.

This no longer seems to work with ionic 3 - and ion-input:

For example the when the following ion-input gets focus, the keyboard is shown but the suggestions bar is not:


	<ion-input autocomplete="true" spellcheck="true" [(ngModel)]="message" placeholder="Write a message...">
		</ion-input>

Example of the expected suggestions bar:

http://cdn.osxdaily.com/wp-content/uploads/2014/10/the-quicktype-bar-ios.jpg

Switch the values:
autocomplete=“true” becomes autocomplete=“on”
spellcheck=“true” becomes autocorrect=“on”

1 Like