Flutter:FloatingActionButton 阴影

Hec*_*tor 4 dart material-design floating-action-button flutter

你能或者有办法改变由FloatingActionButton.extended或任何其他浮动按钮产生的阴影的颜色吗?

小智 7

在此处输入图片说明

你可以试试这个方法:

floatingActionButton: FloatingActionButton(
      onPressed: () {},
      backgroundColor: Colors.red,
      elevation: 0,
      child: Container(
        decoration: BoxDecoration(
          color: Colors.transparent,
          borderRadius: BorderRadius.all(
            Radius.circular(100),
          ),
          boxShadow: [
            BoxShadow(
              color: Colors.purple.withOpacity(0.3),
              spreadRadius: 7,
              blurRadius: 7,
              offset: Offset(3, 5),
            ),
          ],
        ),
      ),
    ),
Run Code Online (Sandbox Code Playgroud)