I might have missed something but after updating m...
# compose
n
I might have missed something but after updating my dependencies (compose to beta07, fragment to 1.3.4, and others), my app crash after first composition with the following error :
java.lang.IllegalStateException: Expected applyChanges() to have been called
does anyone have an idea? the stacktrace doesn't contains any of my code
it seems that a specific composable is the cause, looking it...
ok so :
Copy code
modifier = Modifier.onGloballyPositioned {
    backgroundMinHeight =
        it.positionInParent().y + it.size.height + with(LocalDensity.current) { contentPadding.toPx() }
}
where working before but not with beta07. It's normal because I shouldn't use with(LocalDensity.current) in this block as it's probably null 😄 My only issue is that the error was not explicit about the cause unfortunatelly
found the cause, I hope my description is clear 😄