【发布时间】:2021-11-06 07:09:49
【问题描述】:
我的代码:
OutlinedTextField(
value = state.value,
onValueChange = { state.value = it },
modifier = Modifier.fillMaxWidth().padding(start = 30.dp, end = 30.dp),
label = { Text(text = "Something", fontSize = 14.sp) },
shape = RoundedCornerShape(12.dp),
)
我想增加边框宽度,以便支持颜色focusedBorderColor、disabledBorderColor。
【问题讨论】:
标签: android android-jetpack-compose android-jetpack-compose-text