From c66009543c234fd7d928b508661f9f9cd2094fb7 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Sat, 7 Aug 2021 14:47:55 +0200 Subject: [PATCH] change: Placeholder at username login field should be just username --- lib/pages/views/login_view.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/pages/views/login_view.dart b/lib/pages/views/login_view.dart index 81979638..7a68715a 100644 --- a/lib/pages/views/login_view.dart +++ b/lib/pages/views/login_view.dart @@ -40,8 +40,7 @@ class LoginView extends StatelessWidget { controller.loading ? null : [AutofillHints.username], decoration: InputDecoration( prefixIcon: Icon(Icons.account_box_outlined), - hintText: - '@${L10n.of(context).username.toLowerCase()}:domain', + hintText: L10n.of(context).username, errorText: controller.usernameError, labelText: L10n.of(context).username), ),