Код: Выделить всё
TextField(
value = userNameValue.value,
onValueChange = { userNameValue.value = it },
modifier = Modifier
.fillMaxWidth()
.background(
Color.Transparent
),
label = {
Text(
"Names" //stringResource(id = R.string.username_label)
)
}
}
Подробнее здесь: https://stackoverflow.com/questions/782 ... ransparent