Skip to content
On this page

IndexBar 索引列表

代码演示

基本用法

dart
IndexBar(children: [
  IndexBarAnchor("A"),
  Cell(title: "文本"),
  Cell(title: "文本"),
  Cell(title: "文本"),        //
  IndexBarAnchor("B"),
  Cell(title: "文本"),
  Cell(title: "文本"),
  Cell(title: "文本"),        // ...
]),

自定义索引列表

dart
IndexBar(children: [
  IndexBarAnchor("1", child: Text("标题1")),
  Cell(title: "文本"),
  Cell(title: "文本"),
  Cell(title: "文本"),
  IndexBarAnchor("2", child: Text("标题2")),
  Cell(title: "文本"),
  Cell(title: "文本"),
  Cell(title: "文本"),        // ...
]),

API

Props类型描述
childrenList<IndexBarAnchor | Cell | Widget>子项或锚点
cellExtentdouble子项高度