📜  颤振柱横轴对齐 - Dart 代码示例

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

代码示例5
var phoneNumber = new Row(
  mainAxisSize: MainAxisSize.min,
  children: [
    Expanded(
      child: new Padding(
        padding: const EdgeInsets.all(20.0),
        child: countryCodePicker,
      ),
    ),
    Expanded(
      child: new Padding(
        padding: const EdgeInsets.all(20.0),
        child: mobileNumber,
      ),
    ),
  ],
);