我想在Flutter中灰显一个浮动操作按钮。我该怎么做?
将onPress更改为null不起作用:
onPress
floatingActionButton: const FloatingActionButton( onPressed: null, child: Icon(Icons.add), )
v8wbuo2f1#
有两种选择....1.你可以指定这背景颜色为灰色就像这样:
floatingActionButton: const FloatingActionButton( onPressed: null, child: Icon(Icons.add), backgroundColor: Colors.grey, ),
1.您可以使用“不透明度”构件对其进行 Package ,如下所示:
floatingActionButton: const Opacity( opacity: .3,//level of opacity 0~1 child: FloatingActionButton( onPressed: null, child: Icon(Icons.add), backgroundColor: Colors.grey, ), ),
1条答案
按热度按时间v8wbuo2f1#
有两种选择....
1.你可以指定这背景颜色为灰色就像这样:
1.您可以使用“不透明度”构件对其进行 Package ,如下所示: