Fixed
Status Update
Comments
jb...@google.com <jb...@google.com> #2
I'm not sure what you mean by onSizeChanged. Which size? Children of the scroller?
In this case, how do you expect onSizeChanged modifier behave differently from onPositioned other than performance?
In this case, how do you expect onSizeChanged modifier behave differently from onPositioned other than performance?
il...@google.com <il...@google.com> #3
Sorry, the scroller thing was just an example of when a onPositioned
would be call a lot without the size changing.
In this case, how do you expect onSizeChanged modifier behave differently from onPositioned other than performance?
I imagine it would act similarly, but only for the size, and not position.
zo...@gmail.com <zo...@gmail.com> #4
Oh, I see, thanks for explaining.
I imagine notification only about size change can have some performance wins against position + size notification..
Cc-ing Andrey and reassigning to George, they both have some insights I'm sure. It would be handy to have `Modifier.onSizeChanged`, especially it it will be faster
I imagine notification only about size change can have some performance wins against position + size notification..
Cc-ing Andrey and reassigning to George, they both have some insights I'm sure. It would be handy to have `Modifier.onSizeChanged`, especially it it will be faster
ap...@google.com <ap...@google.com> #5
You can do this yourself with this:
fun Modifier.onSizeChanged(block: (size: IntPxSize) -> Unit): Modifier = object : LayoutModifier2 {
private var previousSize: IntPxSize = PxSize.Zero
override Density.modifySize(
constraints: Constraints,
layoutDirection: LayoutDirection,
childSize: IntPxSize
) {
if (childSize != previousSize) {
previousSize = childSize
block(childSize)
}
return childSize
}
}
Would you like something that only cares about the content size or is this what you would like added to the library?
jb...@google.com <jb...@google.com> #6
Yep, that's exactly what I'd like in the library.
I can also see the benefit of having another modifier to know the content size within the parent too.
Description
Component used: Navigation Version used: androidx.navigation:navigation-*:2.4.0-alpha01 Devices/Android versions reproduced on:
I don't have a repro project, but I do have a stacktrace: