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 | 类型 | 描述 |
---|---|---|
children | List<IndexBarAnchor | Cell | Widget> | 子项或锚点 |
cellExtent | double | 子项高度 |