📜  列删除颤振之间的空间 - Dart 代码示例

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

代码示例1
Column(
   children: [
       SizedBox( // <-- use a sized box and change the height
         height: 40.0,
         child: ListTile(
         title: Text(element.controlConfig.label),
         ),
       ),
     ],
 ),