gpt4 book ai didi

android - 在 Flutter GridView 构建器中添加自定义项

转载 作者:行者123 更新时间:2023-12-04 23:57:37 25 4
gpt4 key购买 nike

我正在尝试在 gridview.builder 中添加一个新的自定义按钮。在我的 gridview 中,我有 5 个项目,请看图片
enter image description here
请看我的简单代码。

 GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3),
itemCount: _categoryList.length,
itemBuilder: (context, index) {
if (_categoryList.length != 0) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: CircleAvatar(
backgroundColor: Colors.transparent,
backgroundImage: NetworkImage(_categoryList[index].icon,),
),
);
} else
return Container();
},
),

最佳答案

在 child 身上,您可以要求 index == 5 并显示一个 Button-Widget 而不是 Photo-List-Item:

GridView.builder(
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 3),
itemCount: _categoryList.length,
itemBuilder: (context, index) {
if (_categoryList.length != 0) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: index == 5 ? myButton() : CircleAvatar(
backgroundColor: Colors.transparent,
backgroundImage: NetworkImage(_categoryList[index].icon,),
),
);
} else
return Container();
},
),

关于android - 在 Flutter GridView 构建器中添加自定义项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66605134/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com