Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
This also brings back dialog content size animations issues :( But on all devices this time.
See attached video
Repro:
Dialog(
onDismissRequest = {
if (dialogState.canDismiss.value) {
dialogNavigator.hide()
}
},
properties = properties,
content = {
Surface(
modifier = modifier
.safeContentPadding()
.fillMaxWidth(0.8f)
.animateContentSize(),
shape = shape,
color = backgroundColor,
contentColor = contentColor,
) {
.....A composable that change it's size
}
},
)
na...@google.com <na...@google.com> #3
Can you give a fuller example for the animateContentSize()
problem?
Description
Jetpack Compose version: 1.2.0-rc01
Derived states updates don't cause recomposition in some cases after updating to 1.2.0-rc01.
Steps to repro: