gpt4 book ai didi

android - Jetpack compose 的 TextField 中的 drawableStart 等效项

转载 作者:行者123 更新时间:2023-12-04 07:46:14 24 4
gpt4 key购买 nike

所以我在这里查看了这份文件 https://developer.android.com/jetpack/compose/text#enter-modify-text
我设法使用以下方法创建了一个文本字段(EditText):

@Composable
fun EmailField() {
var text by remember { mutableStateOf("") }

TextField(
colors = TextFieldDefaults.textFieldColors(
textColor = Color.White,
focusedIndicatorColor = Color.White,
focusedLabelColor = Color.White
),
value = text,
onValueChange = { text = it },
label = { Text("Email") }
)
}
现在我想设置 drawableStart我们在 XML 中有。那么有没有这样的等价物或其他方式来实现?
我想创建这样的东西:
JetPack TextField
任何帮助或领导表示赞赏

最佳答案

1.0.0-beta06您可以使用 leadingIcon 属性:

TextField(
value = text,
onValueChange = { text = it },
leadingIcon = {
Icon(Icons.Filled.Email,
"contentDescription",
modifier = Modifier.clickable { /* .. */})}
)
enter image description here

关于android - Jetpack compose 的 TextField 中的 drawableStart 等效项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67182717/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com