You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are just using the alpha value to get a specific color and don't actually need the transparency, you can work around this by creating a solid color with compositeOver:
// The color behind the waveform
val background = MaterialTheme.colorScheme.background
AudioWaveform(
amplitudes = amplitude,
waveformBrush = SolidColor(Color.White.copy(alpha = .5f).compositeOver(background)),
progressBrush = SolidColor(Color.Red),
amplitudeType = AmplitudeType.Max,
progress = waveformProgress,
onProgressChange = { waveformProgress = it }
)
Hi, thank you for this compose library
I've got an issue when using a colour with an alpha in waveformBrush, the alpha is also carried over to the progressBrush.
A small example to reproduce:
And here is the actual rendering, the red does not match, it also has the alpha channel
The text was updated successfully, but these errors were encountered: