[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-9426":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":16,"stars30d":17,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":18,"rankGlobal":10,"rankLanguage":10,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":22,"hasPages":22,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":24,"readmeContent":25,"aiSummary":26,"trendingCount":16,"starSnapshotCount":16,"syncStatus":17,"lastSyncTime":27,"discoverSource":28},9426,"flutter_sticky_headers","fluttercommunity\u002Fflutter_sticky_headers","fluttercommunity","Flutter Sticky Headers - Lets you place \"sticky headers\" into any scrollable content in your Flutter app. No special wrappers or magic required. Maintainer: @slightfoot","https:\u002F\u002Fpub.dev\u002Fpackages\u002Fsticky_headers",null,"Dart",1162,131,13,34,0,2,54.56,"MIT License",false,"master",true,[],"2026-06-12 04:00:44","\n[![Flutter Community: sticky_headers](https:\u002F\u002Ffluttercommunity.dev\u002F_github\u002Fheader\u002Fsticky_headers)](https:\u002F\u002Fgithub.com\u002Ffluttercommunity\u002Fcommunity)\n\n# Flutter Sticky Headers\n\n[![pub package](https:\u002F\u002Fimg.shields.io\u002Fpub\u002Fv\u002Fsticky_headers.svg)](https:\u002F\u002Fpub.dartlang.org\u002Fpackages\u002Fsticky_headers)\n\nLets you place headers on scrollable content that will stick to the top of the container\nwhilst the content is scrolled.\n\n## Usage\nYou can place a `StickyHeader` or `StickyHeaderBuilder`\ninside any scrollable content, such as:  `ListView`, `GridView`, `CustomScrollView`,\n`SingleChildScrollView` or similar.\n\nDepend on it:\n```yaml\ndependencies:\n  sticky_headers: \"^0.3.0\"\n```\n\nImport it:\n```dart\nimport 'package:sticky_headers\u002Fsticky_headers.dart';\n```\n\nUse it:\n```dart\nclass Example extends StatelessWidget {\n  @override\n  Widget build(BuildContext context) {\n    return ListView.builder(itemBuilder: (context, index) {\n      return StickyHeader(\n        header: Container(\n          height: 50.0,\n          color: Colors.blueGrey[700],\n          padding: EdgeInsets.symmetric(horizontal: 16.0),\n          alignment: Alignment.centerLeft,\n          child: Text('Header #$index',\n            style: const TextStyle(color: Colors.white),\n          ),\n        ),\n        content: Container(\n          child: Image.network(\n            imageForIndex(index), \n            fit: BoxFit.cover,\n            width: double.infinity, \n            height: 200.0,\n          ),\n        ),\n      );\n    });\n  }\n}\n```\n\n\n## Examples\n\n### Example 1 - Headers and Content\n![Demo 1](https:\u002F\u002Fgithub.com\u002Fslightfoot\u002Fflutter_sticky_headers\u002Fraw\u002Fgh-pages\u002Fdemo1.gif)\n\n### Example 2 - Animated Headers with Content\n![Demo 2](https:\u002F\u002Fgithub.com\u002Fslightfoot\u002Fflutter_sticky_headers\u002Fraw\u002Fgh-pages\u002Fdemo2.gif)\n\n### Example 3 - Headers overlapping the Content\n![Demo 3](https:\u002F\u002Fgithub.com\u002Fslightfoot\u002Fflutter_sticky_headers\u002Fraw\u002Fgh-pages\u002Fdemo3.gif)\n\n## Bugs\u002FRequests\nIf you encounter any problems feel free to open an issue. If you feel the library is\nmissing a feature, please raise a ticket on Github and I'll look into it.\nPull request are also welcome.\n","flutter_sticky_headers 是一个用于在 Flutter 应用中为滚动内容添加固定头部的库。其核心功能是允许开发者轻松地将“粘性头部”嵌入到如 `ListView`、`GridView` 等可滚动组件中，而无需额外包装或特殊处理。该库支持自定义头部样式和动画效果，适用于需要在滚动过程中保持头部可见性的场景，例如商品分类列表、时间轴等界面设计。采用 Dart 语言编写，并遵循 MIT 许可协议发布。","2026-06-11 03:22:35","top_language"]