scrollLeft method

void scrollLeft({
  1. FinderBase<SemanticsNode>? scrollable,
})

Performs a SemanticsAction.scrollLeft action on the SemanticsNode found by scrollable or the first scrollable node in the default semantics tree if no scrollable is provided.

Throws a StateError if:

Implementation

void scrollLeft({finders.FinderBase<SemanticsNode>? scrollable}) {
  performAction(scrollable ?? finders.find.semantics.scrollable(), SemanticsAction.scrollLeft);
}