📜  飞镖卡大纲 - 飞镖代码示例

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

代码示例1
Card(
  shape: RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(40), // if you need this
    side: BorderSide(
      color: Colors.grey.withOpacity(0.2),
      width: 1,
    ),
  ),
  child: Container(
    color: Colors.white,
    width: 200,
    height: 200,
  ),
)