lincollincol / compose-audiowaveform

Audio waveform library for Jetpack Compose
Apache License 2.0
190 stars 12 forks source link

Unable to set custom width for the waveform. #17

Open Zaraki596 opened 1 year ago

Zaraki596 commented 1 year ago

As the title suggested whenever I try to customize waveform width with the following line, the waveform take the full width of the screen

           AudioWaveform( modifier = modifier.fillMaxWidth(0.75f) ) 

This is maybe due to behavior of Internally AudioWaveform Composable the Canvas function uses fillMaxWidth()

Screenshot 2023-04-25 at 17 37 45

Any resolution for this?