Has anyone encountered the same error? This looks ...
# compose
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