mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-18 13:37:52 +08:00
Merge pull request #3235 from grummbeer/unitfy-labels-login
Unify input labels. Remove colon from login labels
This commit is contained in:
commit
d0cac8a013
@ -324,13 +324,13 @@ class LoginWidgetUserPass extends StatelessWidget {
|
|||||||
children: [
|
children: [
|
||||||
const SizedBox(height: 8.0),
|
const SizedBox(height: 8.0),
|
||||||
DialogTextField(
|
DialogTextField(
|
||||||
title: '${translate("Username")}:',
|
title: translate("Username"),
|
||||||
controller: username,
|
controller: username,
|
||||||
focusNode: userFocusNode,
|
focusNode: userFocusNode,
|
||||||
prefixIcon: Icon(Icons.account_circle_outlined),
|
prefixIcon: Icon(Icons.account_circle_outlined),
|
||||||
errorText: usernameMsg),
|
errorText: usernameMsg),
|
||||||
DialogTextField(
|
DialogTextField(
|
||||||
title: '${translate("Password")}:',
|
title: translate("Password"),
|
||||||
obscureText: true,
|
obscureText: true,
|
||||||
controller: pass,
|
controller: pass,
|
||||||
prefixIcon: Icon(Icons.lock_outline),
|
prefixIcon: Icon(Icons.lock_outline),
|
||||||
|
Loading…
Reference in New Issue
Block a user