Jetpack Copmose,在 TextField 中居中文本

时间:2021-05-18 13:21:02

标签: android uitextfield android-jetpack-compose

是否可以在 TextField 中居中文本?

textStyle = TextStyle(textAlign = TextAlign.Center) 似乎不起作用。

1 个答案:

答案 0 :(得分:0)

您可以使用:

TextField(value = text,
    onValueChange = {text = it},
    textStyle = LocalTextStyle.current.copy(textAlign = TextAlign.Center))

enter image description here