feat(join by alias) : add TextFieldValidity.None instead of nullable
This commit is contained in:
parent
6f8ca62261
commit
25d39c285b
5 changed files with 6 additions and 5 deletions
|
|
@ -100,7 +100,7 @@ private fun Content(text: String, onTextChange: (String) -> Unit, hasError: Bool
|
|||
Icon(imageVector = image, description)
|
||||
}
|
||||
},
|
||||
validity = if (hasError) TextFieldValidity.Invalid else null,
|
||||
validity = if (hasError) TextFieldValidity.Invalid else TextFieldValidity.None,
|
||||
supportingText = if (hasError) {
|
||||
stringResource(R.string.screen_reset_encryption_password_error)
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue