From 8025653ced029df494cf8c78eb653d96d345294e Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 30 Jun 2025 19:21:23 -0500 Subject: [PATCH] fix: confusing login screen hint text iOS will not allow typing colons on email type text field --- lib/pages/login/login_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/login/login_view.dart b/lib/pages/login/login_view.dart index a82b5054f..7f0a5703c 100644 --- a/lib/pages/login/login_view.dart +++ b/lib/pages/login/login_view.dart @@ -68,7 +68,7 @@ class LoginView extends StatelessWidget { prefixIcon: const Icon(Icons.account_box_outlined), errorText: controller.usernameError, errorStyle: const TextStyle(color: Colors.orange), - hintText: '@username:domain', + hintText: 'username or email', labelText: L10n.of(context).emailOrUsername, ), ),