如何删除 ListView 中卡片之间的空格?
How can I remove spaces between Cards in ListView?
我正在研究 flutter,我想在 ListView 中说明一些卡片,我成功了。
然后我想摆脱卡片之间的水平空间,我搜索并找到了几个解决方案,但 none 个有效。
如何删除空格?
ListTile(
title:Text(" Board list"),
tileColor: Color(COLOR_PRIMARY2),
),
for(Board myBoard in boardDataList)
BoardSelector(myBoard.boardId), //a class draws card
],
谢谢。
我正在研究 flutter,我想在 ListView 中说明一些卡片,我成功了。
然后我想摆脱卡片之间的水平空间,我搜索并找到了几个解决方案,但 none 个有效。
如何删除空格?
ListTile(
title:Text(" Board list"),
tileColor: Color(COLOR_PRIMARY2),
),
for(Board myBoard in boardDataList)
BoardSelector(myBoard.boardId), //a class draws card
],
谢谢。