我在堆栈内部的列中有一个RaisedButton

Stack(
   children: [
       PageView(
         children: [...],
       ),
       Column(
         crossAxisAlignment: CrossAxisAlignment.center,
         mainAxisAlignment: MainAxisAlignment.end,
         children: [
           RaisedButton(
             color: Colors.teal,
             child: Text("Button"),
           ),
           ...
           ),
         ...

但是,该按钮不是灰色填充的,而是灰色且半透明的。
Here it is on top of an orange Container.

我有什么办法可以迫使这个按钮变成蓝绿色?

最佳答案

如果未为RaisedButton提供 onPressed ,它将显示为灰色或已禁用。

您可以通过为提供值来设置禁用RaisedButton的显示颜色。

有关更多详细信息,请访问此link

关于flutter - 用Flutter中的半透明灰色填充呈现的RaisedButton,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51899806/

10-13 02:26