applyStickyChildrenOffset method
void
applyStickyChildrenOffset()
inherited
Implementation
void applyStickyChildrenOffset() {
RenderLayoutBox? scrollContainer = (renderBoxModel as RenderLayoutBox?)!;
for (RenderBoxModel stickyChild in scrollContainer.stickyChildren) {
CSSPositionedLayout.applyStickyChildOffset(scrollContainer, stickyChild);
}
}