📜  颤振向右浮动 - Dart 代码示例

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

代码示例1
Center(
  child: Container(
    height: 120.0,
    width: 120.0,
    color: Colors.blue[50],
    child: Align(
      alignment: Alignment.topRight,
      child: FlutterLogo(
        size: 60,
      ),
    ),
  ),
)