allowImplicitScrolling property

bool get allowImplicitScrolling

If allowImplicitScrolling is true, the PageView will participate in accessibility scrolling more like a ListView, where implicit scroll actions will move to the next page rather than into the contents of the PageView.

This is typically used by assistive technologies, such as screen readers.

Implementation

bool get allowImplicitScrolling => _allowImplicitScrolling;
set allowImplicitScrolling (bool value)

Implementation

set allowImplicitScrolling(bool value) {
  if (_allowImplicitScrolling == value) {
    return;
  }
  _allowImplicitScrolling = value;
  markNeedsSemanticsUpdate();
}