是否有任何插件或方法可以实现这种扑朔迷离的滚动?
要明确说明,请显示在右侧右侧的字母列,例如突出显示当前字母,或者如果点击了某个字母,则滚动视图将直接转到该字母标题。 >
对于按字母顺序排序,我们可以使用List.sort()
来完成,对于粘性标头,我们也提供了一些不错的插件。
答案 0 :(得分:1)
签出此插件粘头 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),
),
);
});
}
}