📜  颤振表格行高 - Dart 代码示例

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

代码示例1
//TableRow class in Flutter doesn't has height attribute. But the height of the TableRow is the maximum of the intrinsic height of all its children's.
//For example, you can has sizedBox classess for all TableCell classes inside the Table Row:

TableRow(
    children: [
        TableCell(
            child: SizedBox(height: 5,),
        ),
        TableCell(
            child: SizedBox(height: 5,),
    ),
]),