{"id":13772436,"url":"https://github.com/itsJoKr/sticky_header_list","last_synced_at":"2025-05-11T04:31:24.264Z","repository":{"id":56840542,"uuid":"131729760","full_name":"itsJoKr/sticky_header_list","owner":"itsJoKr","description":"[DEPRECATED] Sticky Headers List for Flutter","archived":false,"fork":false,"pushed_at":"2020-01-23T15:35:38.000Z","size":19,"stargazers_count":98,"open_issues_count":7,"forks_count":9,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-05-06T10:10:16.367Z","etag":null,"topics":["dart","flutter"],"latest_commit_sha":null,"homepage":"","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itsJoKr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-01T15:30:07.000Z","updated_at":"2023-12-11T16:26:10.000Z","dependencies_parsed_at":"2022-08-29T05:01:31.037Z","dependency_job_id":null,"html_url":"https://github.com/itsJoKr/sticky_header_list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsJoKr%2Fsticky_header_list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsJoKr%2Fsticky_header_list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsJoKr%2Fsticky_header_list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsJoKr%2Fsticky_header_list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsJoKr","download_url":"https://codeload.github.com/itsJoKr/sticky_header_list/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253518941,"owners_count":21921074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","flutter"],"created_at":"2024-08-03T17:01:04.019Z","updated_at":"2025-05-11T04:31:22.432Z","avatar_url":"https://github.com/itsJoKr.png","language":"Dart","funding_links":[],"categories":["Widgets"],"sub_categories":[],"readme":"# sticky_header_list\nSticky Header list for Flutter.\n\n**DEPRECATED:** There was no sticky library when I created this. Hope it helped someone, but now there are better solutions out there, so please check them at pub.dev\n\nhttps://pub.dev/packages/sticky_headers\nhttps://pub.dev/packages/flutter_sticky_header\n\n![](https://i.imgur.com/8M4nMcO.gif)\n\n\n## Usage\n\nYou need to wrap your widgets with `StickyListRow`. Use `HeaderRow` for headers that sticks\nand `RegularRow` for regular rows that scroll normally.\n\nHeight is optional, but if you include it, it will avoid usage of GlobalKeys to determine height: \n\n`new StickyRow(child: yourWidget, height: 20.0)`\n\nUsage is similar to ListView. You can either supply list:\n\n    new StickyList(\n          children: \u003cStickyListRow\u003e[\n            new HeaderRow(child: yourWidget),\n            new RegularRow(child: yourWidget),\n            new RegularRow(child: yourWidget),\n            new HeaderRow(child: yourWidget),\n            new RegularRow(child: yourWidget),\n            /...\n          ],\n        );\n        \nOr you can use builder:\n\n     new StickyList.builder(\n          builder: (BuildContext context, int index) {\n            if (something)\n              return new HeaderRow(yourWidget)\n            else\n              return new RegularRow(yourWidget)\n          },\n          itemCount: 20,\n        );\n        \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FitsJoKr%2Fsticky_header_list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FitsJoKr%2Fsticky_header_list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FitsJoKr%2Fsticky_header_list/lists"}