📜  颤振中的矩形晶圆厂 - Dart 代码示例

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

代码示例1
FloatingActionButton.extended offers a wide FAB, usually with an icon and a label inside it.
Instead of a child parameter, we now have label and icon parameters.

FloatingActionButton.extended(
  onPressed: () {},
  icon: Icon(Icons.save),
  label: Text("Save"),
),