📜  图像抖动中的墨水池不起作用 - Dart 代码示例

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

代码示例1
body: new Center(
    child: new Container(
      child: new Material(
        child: new InkWell(
          onTap: (){print("tapped");},
          child: new Container(
            width: 100.0,
            height: 100.0,
          ),
        ),
        color: Colors.transparent,
      ),
      color: Colors.orange,
    ),
  ),