widgets/nested_scroll_connection library
Classes
- NestedScrollConnection
- A widget that allows the ancestor to consume the new scroll offset occurring in a descendant Scrollable widget before it is consumed by the child.
- NestedScrollConnectionState
Enums
- NestedScrollConnectionPropagation
- The enumeration that defines how nested scrolling events are handled.
Typedefs
- NestedScrollConsumer = NestedScrollListener? Function(NestedScrollConnection connection)
- Signature for the callback that returns a NestedScrollListener which handles nested scroll consumption logic based on the connection.
- NestedScrollListener = double Function(double available, ScrollPosition position)
- Signature for the callback that is called when nested scroll event consuming.
- NestedScrollPredicate = bool Function(double available, ScrollPosition position)
- Signature for the predicate that is used when all events from child widgets need to be consumed and taken over in specific situations.