gpt4 book ai didi

android - Jetpack Compose 中的密集文本字段

转载 作者:行者123 更新时间:2023-12-04 23:50:35 28 4
gpt4 key购买 nike

在旧的 View 系统中,我们可以制作 TextInputLayout密集使用风格Widget.MaterialComponents.TextInputLayout.FilledBox.Dense .
如何创建 TextField 的密集变体在撰写?

最佳答案

1.2.0-alpha04 开头您可以使用 TextFieldDecorationBox 连同 BasicTextField基于 Material Design 文本字段构建自定义文本字段。
要创建密集的文本字段,请使用 contentPadding 参数以减少输入字段周围的填充。
就像是:

var text by remember { mutableStateOf("") }
val singleLine = true
val enabled = true
val interactionSource = remember { MutableInteractionSource() }
BasicTextField(
value = text,
onValueChange = { text = it },
modifier = Modifier
.indicatorLine(enabled, false, interactionSource, TextFieldDefaults.textFieldColors())
.background(
TextFieldDefaults.textFieldColors().backgroundColor(enabled).value,
TextFieldDefaults.TextFieldShape
)
.width(TextFieldDefaults.MinWidth),
singleLine = singleLine,
interactionSource = interactionSource
) { innerTextField ->
TextFieldDecorationBox(
value = text,
innerTextField = innerTextField,
enabled = enabled,
singleLine = singleLine,
visualTransformation = VisualTransformation.None,
interactionSource = interactionSource,
label = { Text("Label") },
contentPadding = TextFieldDefaults.textFieldWithLabelPadding(
start = 4.dp,
end = 4.dp,
bottom = 4.dp // make it dense
)
)
}
enter image description here

关于android - Jetpack Compose 中的密集文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68501865/

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