glorylab / wave

A Flutter package for displaying waves.
https://wave.glorylab.xyz
MIT License
1.11k stars 96 forks source link

[Help] How to create the outer wave example? #38

Closed vramosx closed 2 years ago

vramosx commented 2 years ago

Hi! Thanks for this awesome package.

I was trying to create the same result like the outer wave example:

image

In the available example there is also no such version. Can you please provide an example of this?

Thanks!

RockerFlower commented 2 years ago

This is because the blur property is set in CustomConfig.

WaveWidget(
    // ...
    config: CustomConfig(
        // ...
        blur: MaskFilter.blur(BlurStyle.outer, 2),
    ),
),