floatingActionButton: FloatingActionButton( onPressed: () {}, child: Icon(Icons.add), backgroundColor: Colors.blueGrey[800], ),
字符串我如何设置自定义的不透明度/透明度值的浮动按钮?是否有一个属性,其中的透明度%被定义?
b1payxdu1#
你可以通过给浮动按钮的颜色添加不透明度来设置它的透明度
floatingActionButton: FloatingActionButton( onPressed: () {}, child: Icon(Icons.add), backgroundColor: Colors.blueGrey.withOpacity(0.5), ),
字符串
qvtsj1bj2#
如果要保留原始颜色本身,但仅更改透明度,请使用
Theme.of(context).colorScheme.primaryContainer.withOpacity(0.5)
字符串对于backgroundColor。
2条答案
按热度按时间b1payxdu1#
你可以通过给浮动按钮的颜色添加不透明度来设置它的透明度
字符串
qvtsj1bj2#
如果要保留原始颜色本身,但仅更改透明度,请使用
字符串
对于backgroundColor。