Fixed
Status Update
Comments
ha...@google.com <ha...@google.com>
ti...@google.com <ti...@google.com>
ap...@google.com <ap...@google.com> #2
A couple of questions:
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
os...@google.com <os...@google.com>
pr...@google.com <pr...@google.com> #3
Tested on Android 12 Emulator with custom executor, but cannot repro this issue.
Description
Right now,
Modifier.animateContentSize
places its content viaplaceable.placeRelative(0, 0)
inside the animating space.This effectively means that the content is always placed with an alignment strategy
Alignment.TopStart
, which may not be the desired effect for some content.Could
Modifier.animateContentSize
add anAlignment
argument (with a default value ofAlignment.TopStart
to preserve current behavior) to allow customizing the placement strategy of the content?