📜  颤动图标按钮圈 - 任何代码示例

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

代码示例2
ClipOval(
  child: Material(
    color: Colors.blue, // button color
    child: InkWell(
      splashColor: Colors.red, // inkwell color
      child: SizedBox(width: 56, height: 56, child: Icon(Icons.menu)),
      onTap: () {},
    ),
  ),
)