hasImplicitScrolling property

bool get hasImplicitScrolling

Whether the platform can scroll the semantics node when the user attempts to move focus to an offscreen child.

For example, a ListView widget has implicit scrolling so that users can easily move to the next visible set of children. A TabBar widget does not have implicit scrolling, so that users can navigate into the tab body when reaching the end of the tab bar.

Implementation

bool get hasImplicitScrolling => _flags.hasImplicitScrolling;
set hasImplicitScrolling (bool value)

Implementation

set hasImplicitScrolling(bool value) {
  _flags = _flags.copyWith(hasImplicitScrolling: value);
  _hasBeenAnnotated = true;
}