Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix password visibility and keyboard overlap issues in LoginViewMobile #248

Open
navaneeth0041 opened this issue Jan 28, 2025 · 2 comments · May be fixed by #249
Open

Fix password visibility and keyboard overlap issues in LoginViewMobile #248

navaneeth0041 opened this issue Jan 28, 2025 · 2 comments · May be fixed by #249

Comments

@navaneeth0041
Copy link
Contributor

🐛 Describe the bug

Two UX issues were identified in the LoginViewMobile page:

  1. Password field was showing characters by default instead of being obscured
  2. On-screen keyboard was overlapping with input fields when focused, making text entry difficult

Sample code to reproduce the problem:

CustomTextField(
  controller: passwordController,
  text: 'Password',
  isSeen: !isSeen,  // Bug: Default value of isSeen was false, making password visible
  suffixIcon: IconButton(
    onPressed: () {
      setState(() {
        isSeen = !isSeen;
      });
    },
    icon: Icon(
      !isSeen ? Icons.visibility_off : Icons.visibility,
    ),
  ),
)
WhatsApp.Video.2025-01-29.at.00.09.44.1.mp4
@navaneeth0041 navaneeth0041 linked a pull request Jan 28, 2025 that will close this issue
12 tasks
@MahmoudHassan9
Copy link

MahmoudHassan9 commented Feb 3, 2025

can you asssign this to me ? @navaneeth0041

@navaneeth0041
Copy link
Contributor Author

navaneeth0041 commented Feb 4, 2025

can you asssign this to me ? @navaneeth0041

I already gave the pr solving this issue. If u have any suggestions on that please let me know.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants