slyverin 0.2.0+2 copy "slyverin: ^0.2.0+2" to clipboard
slyverin: ^0.2.0+2 copied to clipboard

outdated

A library of flutter sliver implementations, including for sticky headers and scroll position based animation.

pub package

slyverin #

A library of flutter sliver implementations.

Live Demo

SliverStickyHeader #

Demo video

Video of example for SliverStickyHeader

This sliver accepts two widgets: a header and a body. The header stays pinned to the top of the viewport, until the bottom edge of the overall sliver scrolls out.

The sliver allows you to reverse the normal order so that the header is at the bottom. In itself this can be an interesting usage of the widget. There is a more interesting use for this feature though. Slivers can be a bit tricky when using a scroll view which is centered, since from the view of a sliver everything reverses above the center. For this sliver implementation this means that without the reverse option set to true, slivers above the center have their header at the bottom. To implement a list which is infinite, centered and continuous in how slivers a laid out, slivers above the center have to reverse their layout. Why would you need a list like that? A good example is a list, which is able to lazily load new content from both sides. Without centering the scroll view, adding new content at the top suddenly shifts everything down, make the list hard to use, especially when content is added while scrolling. See this example for a list, making use of this feature.

SliverAnimatedBox #

A sliver which pins its child to the start of the viewport and animates it over the duration of the scrollExtent.

The scrollExtent is total amount a user has to scroll, to move the sliver off the viewport. On the screen the the sliver only occupies the extent of the widget built by builder, which has to derive ist visual representation from a RenderBox. The builder can use the SliverAnimatedBoxMetrics it is given, to animate the returned Widget tree.

Example

License #

The project is licensed under the MIT License.

17
likes
0
pub points
18%
popularity

Publisher

verified publishergabriel.terwesten.net

A library of flutter sliver implementations, including for sticky headers and scroll position based animation.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on slyverin