解决方法
检查这个插件粘头
https://pub.dartlang.org/packages/sticky_headers
https://pub.dartlang.org/packages/sticky_headers
class Example extends StatelessWidget { @override Widget build(BuildContext context) { return new ListView.builder(itemBuilder: (context,index) { return new StickyHeader( header: new Container( height: 50.0,color: Colors.blueGrey[700],padding: new EdgeInsets.symmetric(horizontal: 16.0),alignment: Alignment.centerLeft,child: new Text('Header #$index',style: const TextStyle(color: Colors.white),),content: new Container( child: new Image.network(imageForIndex(index),fit: BoxFit.cover,width: double.infinity,height: 200.0),); }); } }