glorylab / wave

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

Circle view needed #42

Closed Kayuemkhan closed 2 years ago

Kayuemkhan commented 2 years ago

Is your feature request related to a problem? Please describe. I need waveview In circle Describe the solution you'd like I need waveview In circle . But, It is by default only work with rectangular. no Options for circle view.

igmt commented 2 years ago

You can simply use a container with decoration shape circle and clipBehavior set. I needed the same and found out this works well.

Container(
    clipBehavior: Clip.antiAlias,
    height: 150,
    decoration: const BoxDecoration(
        shape: BoxShape.circle,
    ),
    child: WaveWidget(...),
)
Rounded waves
Kayuemkhan commented 2 years ago

Thanks...