AudioWaveVSeekbar
fun AudioWaveVSeekbar(waveBars: List<Float>, modifier: Modifier = Modifier, colorLeft: Color = Color.Blue, colorRight: Color = Color.Gray, trackerDraw: DrawScope.(Float, Size) -> Unit = { progressWidth, trackerSize ->
drawRoundRect(
color = Color.Red,
topLeft = Offset(
java.lang.Float.min(
java.lang.Float.max(progressWidth - trackerSize.width / 2, 0F),
size.width - trackerSize.width,
),
0F,
),
size = trackerSize,
cornerRadius = CornerRadius(10F, 10F),
)
})
Deprecated
This component is deprecated, not used anywhere, and will be removed in the future. Contact the support team for more information.