Fixed
Status Update
Comments
su...@google.com <su...@google.com>
su...@google.com <su...@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
}
},
)
ra...@google.com <ra...@google.com>
ap...@google.com <ap...@google.com> #3
Can you give a fuller example for the animateContentSize()
problem?
ol...@gmail.com <ol...@gmail.com> #4
It does that for all the cases where the content change.
properties = DialogProperties(usePlatformDefaultWidth = false)
var show by remember { mutableStateOf(false) }
LaunchedEffect(Unit) {
delay(1000)
show = true
}
Column {
Text("X")
if (show) {
Text"Y)
}
}
Edit: This was a well known long time issue when not using usePlatformDefaultWidth = false
so we were forced to workaround with that.
Now even with it it trigger that. (Depending on the phone, it's either super slow, or laggy and jumping).
Description
Version used: 1.0.0-beta4
Devices/Android versions reproduced on: Crash only appears on Android 6
Crash appears when trying to enqueue a periodic task.
example :
WorkManager.getInstance().enqueueUniquePeriodicWork("UpdateNovel",ExistingPeriodicWorkPolicy.REPLACE,novel)