lazy_sticky_headers 0.0.4 copy "lazy_sticky_headers: ^0.0.4" to clipboard
lazy_sticky_headers: ^0.0.4 copied to clipboard

A sticky header list with lazy loading support and programmatic scroll positioning features

lazy_sticky_headers #

A flutter implementation of a sticky header list widget with lazy loading support. Significant performance improvement compared to other non-lazy implementations.

Pub "Buy Me A Coffee"

Screenshot

Features #

  • Headers and contents are all lazy-loaded.
  • Supports programmatically scrolling to a specific item in the list.

Getting Started #

In the pubspec.yaml of your flutter project, add the following dependency:

dependencies:
  ...
  lazy_sticky_headers:

In your library add the following import:

...
import 'package:lazy_sticky_headers/lazy_sticky_headers.dart';

Usage Example #

Defining a LazyStickyHeaders widget #

LazyStickyHeaders<String, String>(
    scrollPhysics: const AlwaysScrollableScrollPhysics(parent: BouncingScrollPhysics()),
    // Header
    header: List.generate(5, (header) => header.toString()),

    // Builder header
    builderHeader: (header) {
        return Row(
            children: [
            Container(
                padding: const EdgeInsets.fromLTRB(25, 5, 25, 5),
                margin: const EdgeInsets.fromLTRB(5, 5, 5, 5),
                decoration: BoxDecoration(
                borderRadius: BorderRadius.circular(5.0),
                color: Colors.grey,
                ),
                child: SizedBox(child: Text('Header $header')),
            )
            ],
        );
    },

    // Content
    content: List.generate(
        5,
        (header) => List.generate(
            10,
            (content) {
            return "$header --- Lorem ipsum dolor sit amet, consectetur adipiscing elit, "
                "sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Amet venenatis ";
            },
        ),
    ),

    // Builder content
    builderContent: (content) {
        return Container(
            padding: const EdgeInsets.fromLTRB(5, 5, 5, 5),
            margin: const EdgeInsets.fromLTRB(5, 5, 5, 5),
            decoration: BoxDecoration(
            border: Border.all(
                color: Colors.blue,
            ),
            ),
            child: Text(content),
        );
    },
),

Defining a Header item and builder #

The example below shows the generation of the header item and the widget builder for each header.

// Header
header: List.generate(5, (header) => header.toString()),

// Builder header
builderHeader: (header) {
    return Row(
        children: [
        Container(
            padding: const EdgeInsets.fromLTRB(25, 5, 25, 5),
            margin: const EdgeInsets.fromLTRB(5, 5, 5, 5),
            decoration: BoxDecoration(
            borderRadius: BorderRadius.circular(5.0),
            color: Colors.grey,
            ),
            child: SizedBox(child: Text('Header $header')),
        )
        ],
    );
},

Defining a Content item and builder #

The example below shows the generation of the content item and the widget builder for each content. Each header will have a corresponding list of content associated with it. Ensure that the number of header matches with the number of list of content.

// Content
content: List.generate(
    5,
    (header) => List.generate(
        10,
        (content) {
        return "$header --- Lorem ipsum dolor sit amet, consectetur adipiscing elit, "
            "sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Amet venenatis ";
        },
    ),
),

// Builder content
builderContent: (content) {
    return Container(
        padding: const EdgeInsets.fromLTRB(5, 5, 5, 5),
        margin: const EdgeInsets.fromLTRB(5, 5, 5, 5),
        decoration: BoxDecoration(
        border: Border.all(
            color: Colors.blue,
        ),
        ),
        child: Text(content),
    );
},

Scrolling to list item #

The example below shows the index-based scrolling feature.

...
final _itemScrollController = StickyItemScrollController();

void onClicked(int index){
    _itemScrollController.scrollTo(
        index: index,
        duration: const Duration(milliseconds: 500),
    );
}

@override
Widget build(BuildContext context) {
return LazyStickyHeaders<String, String>(
    ...
    scrollController: _itemScrollController,
    
    ...
);

Like my work? #

Support me with

Monero 41fezqfD3syGsUQNnR8t4hQghCJG61YWmHkYHMmYcNFoMgAg3VPhpXi7J94zdqqW7uBMrTTJS1FwNEZhCsoGMa2T3vQq82A

or

"Buy Me A Coffee"

3
likes
110
pub points
34%
popularity

Publisher

verified publisherincompetent.me

A sticky header list with lazy loading support and programmatic scroll positioning features

Repository (GitHub)
View/report issues

Documentation

API reference

License

Unlicense (LICENSE)

Dependencies

flutter, plugin_platform_interface, scrollable_positioned_list, visibility_detector

More

Packages that depend on lazy_sticky_headers