Fixed
Status Update
Comments
ni...@google.com <ni...@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?
du...@gmail.com <du...@gmail.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.
il...@google.com <il...@google.com>
wk...@google.com <wk...@google.com>
wk...@google.com <wk...@google.com>
il...@google.com <il...@google.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
lo...@gmail.com <lo...@gmail.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?
wk...@google.com <wk...@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.
lo...@gmail.com <lo...@gmail.com> #7
Just tried the code above but modifySize
doesn't seem to be in LayoutModifier2
(it is in the deprecated LayoutModifier
though)
Description
Navigation version: 1.0.0-alpha2
I recently added the new CL2 to my project alongside the Navigation library, where I have 2 navigation xml files that contain argument objects for some fragments.
The error I receive (there are multiple as there are multiple arguments) is:
> Android resource linking failed
error: 'integer' is incompatible with attribute type (attr) enum [deltaRelative=0, parentRelative=2, pathRelative=1] [weak].
error: 'string' is incompatible with attribute type (attr) enum [deltaRelative=0, parentRelative=2, pathRelative=1] [weak].