Fixed
Status Update
Comments
ja...@google.com <ja...@google.com> #2
seems to be dup:
cl...@google.com <cl...@google.com>
ap...@google.com <ap...@google.com> #3
Fundamentally the issue here is that the selection logic happening in composition depends on the text layout result which is available on measure. So we end up using stale TextLayoutResult which causes the issue.
Description
"gravity(RowAlign) is deprecated. Please use gravity instead.",
-> ReplaceWith("gravity(align)")
)
@Suppress("Deprecation")
fun Modifier.gravity(align: RowAlign) = this + when (align) {
Should be:
ReplaceWith("gravity(Alignment)")