Skip to content

Commit fba97d8

Browse files
committed
sticky_header test: Use 10 items instead of 100
This is still enough to fill more than the viewport, and will be more helpful for scrolling past an entire sliver when we add more slivers.
1 parent 7df2c37 commit fba97d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/widgets/sticky_header_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ Future<void> _checkSequence(
256256
SliverStickyHeaderList(
257257
headerPlacement: headerPlacement,
258258
delegate: SliverChildListDelegate(
259-
List.generate(100, (i) => buildItem(i)))),
259+
List.generate(10, (i) => buildItem(i)))),
260260
];
261261

262262
final double anchor;

0 commit comments

Comments
 (0)