flutter_sticky_headers icon indicating copy to clipboard operation
flutter_sticky_headers copied to clipboard

Flutter Sticky Headers - Lets you place "sticky headers" into any scrollable content in your Flutter app. No special wrappers or magic required. Maintainer: @slightfoot

Results 43 flutter_sticky_headers issues
Sort by recently updated
recently updated
newest added

I am facing an issue I cannot wrap my head around: **If the material app has a dark theme configured, then the sticky headers do not work anymore if the...

Fixed: #75 headerHeight is also considered to calculate height when overlapHeaders = true.

The bug occurs when overlapHeaders = true and header height is more than content.

I want to update the state when the Sticky Headers stick to the top. I tried doing it in the callback but got an error. What is the correct way...

`localToGlobal` Is not up to date during the layout phase. This PR moves that code to the paint phase. This is not ideal, but the operations performed are not expensive...

Update `README.md` with links to Issues And PRs pages

This PR partially solves #68. I achieved this result with `StickyHeaderBuilder` since it's rebuilt every time its stuck amount changes, but couldn't achieve it yet with just `StickyHeader`.

It would be nice to be able to nest multiple `StickyHeaders` and keep the inner ones visible under the outer ones. With the current version of the library the inner...