change: Placeholder at username login field should be just username

This commit is contained in:
Christian Pauly 2021-08-07 14:47:55 +02:00
parent b2f250ebd8
commit c66009543c
1 changed files with 1 additions and 2 deletions

View File

@ -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),
),