Hi Shai,
I have set 2 rows for setting height of textfield. owise textfield looks very small in ipad device.for user it's not comfort to add input. if any other way to set height will be most appreciate.
other thing is for password "
passwordTxtField.setConstraint(TextField.PASSWORD)" code set password when lost focus from password field.
I need to enter password like enter password character and suddenly it has to converts into * or else hidden character. as user can see what he has entered in password field.
also one more thing is when i checked remember me user login credential on ios/android device then login form has to be come with prefilled username and password. in this case password comes in actual text instead of hidden text.code as below.
if(Storage.getInstance().readObject("username")!=null){
loginTxtField.setText(Storage.getInstance().readObject("username").toString());
}
if(Storage.getInstance().readObject("password")!=null){
passwordTxtField.setText(Storage.getInstance().readObject("password").toString());
}
Any suggestion ?
Thanks.