Hi Team,
I have implemented the password hide/show using following code. It works on second click of the stack not first click.
private void TapGestureRecognizer_Tapped(object sender, EventArgs e)
{
if (PasswordHide.IsVisible)
{
entryPassword.IsPassword = false;
PasswordHide.IsVisible = false;
PasswordShow.IsVisible = true;
}
else if (PasswordShow.IsVisible)
{
entryPassword.IsPassword = true;
PasswordHide.IsVisible = true;
PasswordShow.IsVisible = false;
}
}
Any help?
Thanks in advance.