如何设置提升按钮的样式?
How can I style an elevated button?
我想为我的 flutter 迷你应用程序中的提升按钮提供背景颜色。我尝试使用 buttonStyle 属性,但我不知道 MaterialStateProperty 是什么。
您可以使用这两种方法中的一种。对于旅游问题,您可以使用第一个选项。
style: ButtonStyle(backgroundColor: MaterialStateProperty.all(Colors.green)),
或
style: ElevatedButton.styleFrom(primary: Colors.amber),
您使用了 属性
中的样式
我想为我的 flutter 迷你应用程序中的提升按钮提供背景颜色。我尝试使用 buttonStyle 属性,但我不知道 MaterialStateProperty 是什么。
您可以使用这两种方法中的一种。对于旅游问题,您可以使用第一个选项。
style: ButtonStyle(backgroundColor: MaterialStateProperty.all(Colors.green)),
或
style: ElevatedButton.styleFrom(primary: Colors.amber),
您使用了 属性
中的样式