如何在Flutter中灰显浮动操作按钮?

eblbsuwk  于 2023-02-09  发布在  Flutter
关注(0)|答案(1)|浏览(184)

我想在Flutter中灰显一个浮动操作按钮。我该怎么做?

onPress更改为null不起作用:

floatingActionButton: const FloatingActionButton(
  onPressed: null,
  child: Icon(Icons.add),
)
v8wbuo2f

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,
            
          ),
        ),

相关问题