Hi guys. Maybe anybody faced to the issue with ali...
# compose
a
Hi guys. Maybe anybody faced to the issue with aligning text in the TextField? I’m trying to align text at the end of the field and only BasicTextFiled works correctly. Please take a look on the screenshot. Or I do something wrong?
Copy code
Column() {
    BasicTextField(
        value = "BasicTextField", onValueChange = { },
        textStyle = TextStyle.Default.copy(textAlign = TextAlign.End),
        modifier = Modifier.fillMaxWidth()
    )
    TextField(
        value = "TextField", onValueChange = { },
        textStyle = TextStyle.Default.copy(textAlign = TextAlign.End),
        modifier = Modifier.fillMaxWidth()
    )
    OutlinedTextField(
        value = "OutlinedTextField", onValueChange = { },
        textStyle = TextStyle.Default.copy(textAlign = TextAlign.End),
        modifier = Modifier.fillMaxWidth()
    )
}