dropChild method
Mark children needs layout when drop child as Flutter did
Implementation
@override
void dropChild(RenderBox child) {
super.dropChild(child);
// Loop to mark all the children to needsLayout as flutter did
_syncChildNeedsLayoutFlag(child);
}