Let's say I have a stack of 100 positioned widget children, I add one new positioned widget to that stack but the rest don't change, then I setState to rebuild that stack, should all 100 children run their rebuild function? I ask because this is happening in my app but was hoping I could prevent the rebuild of the entire stack, since flutter should see most of the stack as unchanged.
edit: [more accurately, how do i make sure i'm not re-rendering all 100 widgets in the stack when i add one child or remove one child, is there a way to verify, inspect the render tree]