如何在 ReorderableListView 中的项目之间添加空间?

时间:2021-04-30 17:07:55

标签: flutter flutter-layout

[!] No `Podfile' found in the project directory.

有没有办法在每个项目之间添加一些间距?

1 个答案:

答案 0 :(得分:0)

用如下的 Padding 包裹 ListTile,

      Padding(
        padding: const EdgeInsets.all(8.0) //your choice
        ListTile(
          key: Key('$index'),
          title: Text('Item $index'),
        ),
      )