📌  相关文章
📜  如何在颤动中仅使一行 2 个元素中的一个元素居中 - 无论代码示例

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

代码示例1
Row(
  children: [
    Expanded(child: Center(child: Text('Center'))),
    Text("#"),
  ],
)