scrollable_positioned_list 0.3.7 scrollable_positioned_list: ^0.3.7 copied to clipboard
A list with helper methods to programmatically scroll to an item.
0.3.7 #
- Add ScrollOffsetListener to allow listening to changes in scroll offset.
0.3.6 #
- Fix cache extents for horizontal lists
- scrollTo future doesn't complete until scrolling is done.
0.3.5 #
- Fix extraneous animation controller declaration in 0.3.4.
0.3.4 #
- Disposed the animation controller when disposing the scrollable list.
0.3.3 #
- Fix potential crash when reading from RenderBox.size.
0.3.2 #
- Re-apply Flutter framework bindings' null safety calls but set SDK constraints correctly to 2.12.0 instead.
0.3.1 #
- Reverts change from 0.3.0 where the Flutter version constraint should have been set to 2.12.0 instead of 2.10.5.
0.3.0 #
- Move to Flutter version 2.10.5 and update dependencies' null safety calls.
0.2.3 #
- Support shrink wrap.
0.2.2 #
- Move dependencies from pre-release versions to released versions.
0.2.1 #
- Fix crash on NaN or infinite offset.
0.2.0-nullsafety.0 #
- Update to null safety.
0.1.10 #
- Update the home page URL to fix issue #190.
- Miscellaneous tweaks to the example.
- Added documentation to address issue #96.
- Miscellaneous other cleanup.
- Restructured
_ScrollablePositionedListState
to try to simplify logic. - Fixed an issue with
ItemScrollController.scrollTo
where it could scroll to the wrong item if a non-zeroalignment
was specified and if the list was manually scrolled by dragging.
0.1.9 #
- Fixed the example in
README.md
. Fixes issue #191. - Made the example runnable with
flutter run
. Fixes issue #211. - Updates to computation of semantic clip.
- Smoother transition between views on long scrolls.
- New controls over transition between views on long scrolls.
0.1.8 #
- Set updateScheduled to false when short circuiting due to empty list. To fix https://github.com/google/flutter.widgets/issues/182.
0.1.7 #
- Apply viewport dimensions in UnboundedRenderedViewport.performResize. To work around change in https://github.com/flutter/flutter/pull/61973 causing breakage
0.1.6 #
- Change to do local scroll (without a fade) whenever target item is found within the cache.
- Added sdk constraints to the example.
- Moved
itemScrollControllerDetachment
to_ScrollablePositionedListState.deactivate
.
0.1.5 #
- Added minCacheExtent to ScrollablePositionedList
- Fixes the issue when item count updated from zero to one and
index
initemBuilder
becomes-1
. Fixes issue #104.
0.1.4 #
0.1.1 #
-
Fix padding for horizontal lists.
-
Add
ScrollablePositionedList.separated
constructor to complete issue #34. -
Add
isAttached
method toItemScrollController
.
0.1.0 #
0.0.1 #
- Added
ScrollablePositionedList
.