shouldRenderChild method

bool shouldRenderChild(
  1. ComponentInstance child
)

Determines whether a given child should be rendered. Defaults to false, meaning the decision is left to layout/rendering code.

Implementation

bool shouldRenderChild(ComponentInstance child) => false;