Has anybody seen an issue with LazyRow/LazyList and fillParentMaxSize failing to work in release builds, or a different issue with the same type of symptoms?
I’m running into a case where, on the first measure/layout pass, the fillParentMaxSize modifier is using the correct widthState value set by the LazyList. However, subsequent measure/layout passes (that happen basically immediately) seem to be using a new LazyItemScope instance which seems to not be receiving the parent width/height state, therefore causing fillParentMaxSize to effectively be a no-op.
Only an issue in my release builds, making it hard to debug. In debug builds, the same LazyItemScope instance is used for each of the measure/layout passes. Makes me wonder if somehow the LazyList is trying to update the “max size” on an old LazyItemScope? This is in Compose 1.3.1 :face_with_peeking_eye: