ElevatedButtonSelector extension

Allows filtering ElevatedButton by the properties provided via Diagnosticable.debugFillProperties

on

Methods

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