Guillaume Dévaud
Guillaume Dévaud

Reputation: 27

Field contraint on iOS Keyboard

Is there a way on iOS to get something better than the normal keyboard when the field is constrained to numeric.

keyboard I get on iOS

Instead, I would like to get something closer from Android. Like just the number instead of all the junk around i get here

Upvotes: 1

Views: 29

Answers (1)

Shai Almog
Shai Almog

Reputation: 52760

Sure:

myTextField.setConstraint(TextArea.NUMERIC);

There are many constraints e.g. PASSWORD, DECIMAL, EMAIL etc...

Upvotes: 2

Related Questions