excludeFromSemanticsScrolling property
@protected
Whether the SemanticsNodes associated with this RenderSliver should be excluded from the semantic scrolling area.
RenderSlivers that stay on the screen even though the user has scrolled past them (e.g. a pinned app bar) should set this to true.
Implementation
@protected
bool get excludeFromSemanticsScrolling => _excludeFromSemanticsScrolling;
Implementation
set excludeFromSemanticsScrolling(bool value) {
if (_excludeFromSemanticsScrolling == value)
return;
_excludeFromSemanticsScrolling = value;
markNeedsSemanticsUpdate();
}