flutter_sticky_header
flutter_sticky_header copied to clipboard
Flutter implementation of sticky headers for sliver
Hi. I'm trying to use text field, but i cant tap on it cause nothing happens. what should i do? 
This is working for my use case, but I have not robustly checked it beyond that.
When using center key, the header gets stuck on the bottom. I wondering if there is a way to simply display headers for months and years indefinitely starting at a...
First I use this example from here: https://github.com/letsar/flutter_sticky_header/blob/master/example/lib/examples/mix_slivers.dart Instead of hard-coded `_StickyHeaderList` in build method: https://github.com/letsar/flutter_sticky_header/blob/ea97f5455a7eb52899a15cd9aed0b79286648963/example/lib/examples/mix_slivers.dart#L12-L35 I want to use another ListView like: ```dart @override Widget build(BuildContext context) { return...
Is it possible to detect when a header is sticked (like using a listener of provide a callback)? I need to create the effect like in the video; I have...
When using `Scrollable.ensureVisible(context)` on a child of `SliverStickyHeader` with `overlapsContent: true`, the `Scrollable` scrolls to the wrong position. The problem appears to be in `childScrollOffset` (https://github.com/letsar/flutter_sticky_header/blob/master/lib/src/rendering/sliver_sticky_header.dart#L346) which returns `_headerExtent` even...
Sometimes a callback may be needed to make sure that the header is fixed. Maybe it would be better to add a callback? example: ```dart SliverStickyHeader( pinnedCallback: (stickyHeaderScrollOffset){ // do...
when i use Scaffold extendBodyBehindAppBar = true, the head will slide to the top, so the head will be hidden.I hope this can be fixed under the AppBar,thanks
Hi Letsar, Thanks for making such a wondeful and useful package for sliver! I want to depent on this package for my project but a bit stuck figuring out why...
The problem is shown in the GIF the silver of the sticky header is overlapping from bottom !! look at the bottom of the silver it keeps going up like...