我的代码:
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),
)
Run Code Online (Sandbox Code Playgroud)
我想增加边框宽度,以便支持颜色focusedBorderColor, 。disabledBorderColor
android android-jetpack-compose android-jetpack-compose-text