我想创建图标列表,但我能够创建。请帮助
的数据我添加了方括号,但它显示错误:预期的标识符,但得到了''。在这里输入图像描述。
的我正在做安吉拉余当然IG这已经过时了,但我不能找到解决方案的文件以及
63lcw9qa1#
你可以试试这个
Row( children:scoreKeeper, )
字符串或本
Row( children:[ //your other widgets ...scoreKeeper // ... is called spread operator ], ),
型如果你想在其中添加间隙,那么你可以尝试以下代码
Row( children: [ for (final icon in scoreKeeper) ...[ icon, const SizedBox( width: 10, ) ] ], )
型或者你可以直接在scoreKeeper列表中添加gap,如下所示
scoreKeeper
List<Widget> scoreKeeper=[ Icon(Icons.check), const SizedBox(width:10), Icon(Icons.close), ];
型您可以在dart文档中阅读更多关于spread operator的信息
1条答案
按热度按时间63lcw9qa1#
你可以试试这个
字符串
或本
型
如果你想在其中添加间隙,那么你可以尝试以下代码
型
或者你可以直接在
scoreKeeper
列表中添加gap,如下所示型
您可以在dart文档中阅读更多关于spread operator的信息