See

Blur Glass - Google Chrome.png

pub

https://pub.dev/packages/blur_glass

use

dependencies:
    blur_glass: ^lastest_version
    BlurGlass(
        margin: EdgeInsets.all(5.0),
        padding: EdgeInsets.all(5.0),
        child: Row(
                children: [
                    Icon(Icons.star),
                    Icon(Icons.list),
                    Icon(Icons.zoom_in),
                ],
            )
    )

Function creator

  BlurGlass({Key? key,
             required this.child,
             this.margin,
             this.padding,
             this.color,
             this.outBorderRadius = 20.0, //
             this.inBorderRadius = 30.0,  //
             this.filterX = 10.0,         //The degree of blurriness
             this.filterY = 10.0          //模糊程度
             }) : super(key: key);

Github:shAdow-XJY/blur_glass: A simple blur glass widget easy to use in Flutter. (github.com)

Gitee:shAdow-XJY/blur_glass (gitee.com)

Libraries

blur_glass