On 1.2.0-alpha08, noticing that the `OutlinedTextF...
# compose
t
On 1.2.0-alpha08, noticing that the `OutlinedTextField`’s label is offset to the right. bug or expected? 🧵
Copy code
var value by remember { mutableStateOf(TextFieldValue("")) }

OutlinedTextField(
    modifier = Modifier.fillMaxWidth(0.8f),
    value = value,
    onValueChange = { value = it }, label = {
        Box(
            modifier = Modifier
                .fillMaxWidth()
                .height(10.dp)
                .background(Color.Yellow)
        ) {}
    }
)
produces the following
seems like its bleeding out of the bounds of the outline
z
I would guess that’s a bug. Might as well file
a
or try updating compose to beta? Might have been fixed already
z
Oh yea, definitely try that first
👍🏼 1
t
will try beta or file