whereTextScaleFactor method

  1. @useResult
WidgetSelector<EditableText> whereTextScaleFactor(
  1. MatchProp<double> match
)

Creates a WidgetSelector that finds all EditableText where textScaleFactor matches the condition.

Example usage:

spot<EditableText>().whereTextScaleFactor((it) => it.isGreaterThan(10.5)).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereTextScaleFactor(MatchProp<double> match) {
  return withDiagnosticProp<double>('textScaleFactor', match);
}