Skip to content

Commit eb38a4d

Browse files
authored
Update for publishing ScollOffsetController 0.3.8 (#475)
* Update for publishing ScollOffsetController 0.3.8 * Update for publishing ScollOffsetController 0.3.8
1 parent db7aefd commit eb38a4d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

packages/scrollable_positioned_list/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.3.8
2+
* Add ScrollOffsetController to allow pixel-based changes in offset.
3+
* Bump min sdk version to 2.15.0
4+
15
# 0.3.7
26
* Add ScrollOffsetListener to allow listening to changes in scroll offset.
37

packages/scrollable_positioned_list/lib/src/wrapping.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class CustomRenderShrinkWrappingViewport extends CustomRenderViewport {
120120
/// contents.
121121
///
122122
/// The [offset] must be specified. For testing purposes, consider passing a
123-
/// [new ViewportOffset.zero] or [new ViewportOffset.fixed].
123+
/// [ViewportOffset.zero] or [ViewportOffset.fixed].
124124
CustomRenderShrinkWrappingViewport({
125125
AxisDirection axisDirection = AxisDirection.down,
126126
required AxisDirection crossAxisDirection,
@@ -651,7 +651,7 @@ abstract class CustomRenderViewport
651651
/// list, if any, is used.
652652
///
653653
/// The [offset] must be specified. For testing purposes, consider passing a
654-
/// [new ViewportOffset.zero] or [new ViewportOffset.fixed].
654+
/// [ViewportOffset.zero] or [ViewportOffset.fixed].
655655
CustomRenderViewport({
656656
AxisDirection axisDirection = AxisDirection.down,
657657
required AxisDirection crossAxisDirection,

packages/scrollable_positioned_list/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: scrollable_positioned_list
2-
version: 0.3.7
2+
version: 0.3.8
33
description: >
44
A list with helper methods to programmatically scroll to an item.
55
homepage: https://github.com/google/flutter.widgets/tree/master/packages/scrollable_positioned_list
66

77
environment:
8-
sdk: '>=2.12.0 <4.0.0'
8+
sdk: '>=2.15.0 <4.0.0'
99
flutter: '>=2.12.0'
1010

1111
dependencies:

0 commit comments

Comments
 (0)