Fix for input method bug UWP
if (InputScope != null && InputScope.Names.Any(i => i.NameValue == InputScopeNameValue.Number)) | |
{ | |
InputScope = NumericPasswordInputScope; | |
} | |
else | |
{ | |
InputScope = PasswordInputScope; // Change to default input scope so we don't have suggestions, etc. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment