in core/src/main/java/com/facebook/testing/screenshot/ViewHelpers.java [182:191]
private void dispatchPreDraw(View view) {
while (view.getViewTreeObserver().dispatchOnPreDraw()) {}
if (view instanceof ViewGroup) {
ViewGroup vg = (ViewGroup) view;
for (int i = 0; i < vg.getChildCount(); i++) {
dispatchPreDraw(vg.getChildAt(i));
}
}
}