【问题标题】:How to change the background color of ElevatedButton in Flutter?如何在 Flutter 中更改 ElevatedButton 的背景颜色?
【发布时间】:2021-06-21 08:29:55
【问题描述】:

我尝试更改 ElevatedButton 的背景颜色,但它给了我一个错误。怎么改?

ElevatedButton(
  onPressed: null,
  style: ButtonStyle(backgroundColor: Colors.red), // Error
}

【问题讨论】:

    标签: flutter flutter-layout flutter-widget


    【解决方案1】:

    试试这个方法

       ElevatedButton(            
                onPressed: () {},
                style: ElevatedButton.styleFrom(
                    primary: Colors.red,
                    ),)
    

    【讨论】:

      猜你喜欢
      • 2020-02-27
      • 1970-01-01
      • 2020-10-26
      • 2021-08-23
      • 2019-01-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多