如何在Flutter中更改ElevatedButton的背景颜色?
How to change the background color of ElevatedButton in Flutter?
我尝试更改 ElevatedButton 的背景颜色,但出现错误。我该如何更改它?
ElevatedButton(
onPressed: null,
style: ButtonStyle(backgroundColor: Colors.red), // Error
}
试试这个方法
ElevatedButton(
onPressed: () {},
style: ElevatedButton.styleFrom(
primary: Colors.red,
),)
我尝试更改 ElevatedButton 的背景颜色,但出现错误。我该如何更改它?
ElevatedButton(
onPressed: null,
style: ButtonStyle(backgroundColor: Colors.red), // Error
}
试试这个方法
ElevatedButton(
onPressed: () {},
style: ElevatedButton.styleFrom(
primary: Colors.red,
),)