Use generic common_username and common_password
This commit is contained in:
parent
98fbc57aa0
commit
4a63847245
1 changed files with 2 additions and 2 deletions
|
|
@ -199,7 +199,7 @@ internal fun LoginForm(
|
||||||
eventSink(LoginPasswordEvents.SetLogin(it))
|
eventSink(LoginPasswordEvents.SetLogin(it))
|
||||||
}),
|
}),
|
||||||
placeholder = {
|
placeholder = {
|
||||||
Text(text = stringResource(R.string.screen_login_username_hint))
|
Text(text = stringResource(CommonStrings.common_username))
|
||||||
},
|
},
|
||||||
onValueChange = {
|
onValueChange = {
|
||||||
loginFieldState = it
|
loginFieldState = it
|
||||||
|
|
@ -246,7 +246,7 @@ internal fun LoginForm(
|
||||||
eventSink(LoginPasswordEvents.SetPassword(it))
|
eventSink(LoginPasswordEvents.SetPassword(it))
|
||||||
},
|
},
|
||||||
placeholder = {
|
placeholder = {
|
||||||
Text(text = stringResource(R.string.screen_login_password_hint))
|
Text(text = stringResource(CommonStrings.common_password))
|
||||||
},
|
},
|
||||||
visualTransformation = if (passwordVisible) VisualTransformation.None else PasswordVisualTransformation(),
|
visualTransformation = if (passwordVisible) VisualTransformation.None else PasswordVisualTransformation(),
|
||||||
trailingIcon = {
|
trailingIcon = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue