SizedBoxSelector extension

Allows filtering SizedBox by the properties provided via Diagnosticable.debugFillProperties

on

Methods

whereHeight(MatchProp<double> match) WidgetSelector<SizedBox>
Creates a WidgetSelector that finds all SizedBox where height matches the condition.
whereRenderObject(MatchProp<RenderConstrainedBox> match) WidgetSelector<SizedBox>
Creates a WidgetSelector that finds all SizedBox where renderObject matches the condition.
whereWidth(MatchProp<double> match) WidgetSelector<SizedBox>
Creates a WidgetSelector that finds all SizedBox where width matches the condition.
withHeight(double? value) WidgetSelector<SizedBox>
Creates a WidgetSelector that finds all SizedBox where height equals (==) value.
withRenderObject(RenderConstrainedBox? value) WidgetSelector<SizedBox>
Creates a WidgetSelector that finds all SizedBox where renderObject equals (==) value.
withWidth(double? value) WidgetSelector<SizedBox>
Creates a WidgetSelector that finds all SizedBox where width equals (==) value.