Has anyone encountered the same error? This looks like an internal error in Compose, but I can provi...
n
Has anyone encountered the same error? This looks like an internal error in Compose, but I can provide a code that is reproducible 🤔
Copy code
val textState = rememberTextFieldState("name")
Box(
  modifier = Modifier.clickable(enabled = false, onClick = { })
) {
  BasicTextField(
    state = textState,
    decorator = {
      it()
    }
  )
}
Here is a minimal code that can reproduce this error
f
If you have a reproducible example, you best bet is to create an issue in google issue tracker. And make sure to specify which version of Compose you are using 🙏
n
yes, I actually submitted this code under a related question and just wanted to ask again on slack(Hope someone related to the Compose team will see it) 😛
f
Fair enough 😄
s
Always good to link the related bug so people affected can +1 it I'd say 😊
n
thank you color 1
c
I'm also getting this. i have a super simple app (a button with a lazy column) and only 5 users lol
cant repro locally.
n
I've reported the bug with @Halil Ozercan and it will should be fixed 😀👍
💪 1
c
Cool. Interesting bit is that I dont have any text fields in my app lol