We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc83ffd commit 25f4b56Copy full SHA for 25f4b56
1 file changed
tns-core-modules/ui/dialogs/dialogs.android.ts
@@ -241,7 +241,7 @@ export function login(...args: any[]): Promise<LoginResult> {
241
passwordInput.setInputType(android.text.InputType.TYPE_CLASS_TEXT | android.text.InputType.TYPE_TEXT_VARIATION_PASSWORD);
242
passwordInput.setTypeface(android.graphics.Typeface.DEFAULT);
243
244
- passwordInput.setHint(options.userNameHint ? options.userNameHint : "");
+ passwordInput.setHint(options.passwordHint ? options.passwordHint : "");
245
passwordInput.setText(options.password ? options.password : "");
246
247
const layout = new android.widget.LinearLayout(context);
0 commit comments