dart 将自定义透明度值设置为floatingButton in flutter

qlvxas9a  于 2023-11-14  发布在  Flutter
关注(0)|答案(2)|浏览(126)
floatingActionButton: FloatingActionButton(
        onPressed: () {},
        child: Icon(Icons.add),
        backgroundColor: Colors.blueGrey[800],
      ),

字符串
我如何设置自定义的不透明度/透明度值的浮动按钮?是否有一个属性,其中的透明度%被定义?

b1payxdu

b1payxdu1#

你可以通过给浮动按钮的颜色添加不透明度来设置它的透明度

floatingActionButton: FloatingActionButton(
    onPressed: () {},
    child: Icon(Icons.add),
    backgroundColor: Colors.blueGrey.withOpacity(0.5),
  ),

字符串

qvtsj1bj

qvtsj1bj2#

如果要保留原始颜色本身,但仅更改透明度,请使用

Theme.of(context).colorScheme.primaryContainer.withOpacity(0.5)

字符串
对于backgroundColor。

相关问题