📌  相关文章
📜  如何在颤动中更改高架按钮的背景颜色 - Dart 代码示例

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

代码示例5
bool isButtonPressed = false;

RaisedButton(
            color: isButtonPressed ? Colors.green : Colors.red,
            onPressed: () {
              setState(() {
                isButtonPressed =!isButtonPressed;
              });
            },
          ),