📜  半径仅顶部或底部颤动 - 无论代码示例

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

代码示例1
const BorderRadius.vertical({
  Radius top = Radius.zero,
  Radius bottom = Radius.zero,
}) : this.only(
  topLeft: top,
  topRight: top,
  bottomLeft: bottom,
  bottomRight: bottom,
);