📌  相关文章
📜  提升按钮背景颜色 - 无论代码示例

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

代码示例1
ElevatedButton(
  style: ButtonStyle(
    backgroundColor: MaterialStateProperty.resolveWith(
      (Set states) {
        if (states.contains(MaterialState.pressed))
          return Colors.green;
        return null; // Use the component's default.
      },
    ),
  ),
)