📌  相关文章
📜  如何在颤动中更改列表视图的背景颜色 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:10.699000             🧑  作者: Mango

代码示例1
class PageTwoState extends State {
  @override
  Widget build(BuildContext context) {
    return ListView.builder(
      itemExtent: 250.0,
      itemBuilder: (context, index) => Container(
            padding: EdgeInsets.all(10.0),
            child: Material(
              elevation: 4.0,
              borderRadius: BorderRadius.circular(5.0),
              color: index % 2 == 0 ? Colors.cyan : Colors.deepOrange,
              child: Center(
                child: Text(index.toString()),
              ),
            ),
          ),
    );
  }
}