OutlinedButtonSelector extension

Allows filtering OutlinedButton by the properties provided via Diagnosticable.debugFillProperties

on

Methods

whereEnabled(MatchProp<bool> match) WidgetSelector<OutlinedButton>
Creates a WidgetSelector that finds all OutlinedButton where enabled matches the condition.
whereFocusNode(MatchProp<FocusNode> match) WidgetSelector<OutlinedButton>
Creates a WidgetSelector that finds all OutlinedButton where focusNode matches the condition.
whereStyle(MatchProp<ButtonStyle> match) WidgetSelector<OutlinedButton>
Creates a WidgetSelector that finds all OutlinedButton where style matches the condition.
withEnabled(bool? value) WidgetSelector<OutlinedButton>
Creates a WidgetSelector that finds all OutlinedButton where enabled equals (==) value.
withFocusNode(FocusNode? value) WidgetSelector<OutlinedButton>
Creates a WidgetSelector that finds all OutlinedButton where focusNode equals (==) value.
withStyle(ButtonStyle? value) WidgetSelector<OutlinedButton>
Creates a WidgetSelector that finds all OutlinedButton where style equals (==) value.