Hello Everyone.
So, I am kind new in corona. I am creating a password text input, this input does not has a background, but when I set the property isSecure = false it creates a white background automatically. Anyone has notice that or am I doing something wrong?
Thanks in advanced.
This is the code:
[lua]passwordGroup.passwordInput = native.newTextField( passwordGroup.iconHolderPass.width/2, 0, passwordGroup.background.width - passwordGroup.iconHolderPass.width, passwordGroup.background.height )
–passwordGroup.passwordInput.isSecure = true;
passwordGroup.passwordInput.hasBackground = false;
passwordGroup.passwordInput.placeholder = “Password”;
passwordGroup.passwordInput:setTextColor(1,1,1);
passwordGroup.passwordInput.font = native.newFont( globals.fonts.robotoFontRegular, 65 );[/lua]