Fixed
Status Update
Comments
jc...@gmail.com <jc...@gmail.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
}
},
)
ma...@google.com <ma...@google.com>
ma...@google.com <ma...@google.com> #3
Can you give a fuller example for the animateContentSize()
problem?
Description
property class in a db.Model model, the program works, however if I switch
it to db.Expando it stops working throwing an exception:
<type 'exceptions.TypeError'>: string indices must be integers
at the line that says:
the_ent.json['value'] += 1
It turns out that the json property is still of type string, instead dict
(that the property class is supposed to convert it to).