
Offers customizable media control components, including a ProgressBar with seek functionality. Enhances user experience by allowing easy integration and modification of media controls in applications.
A library to provide customisable media control components.
implementation "cl.emilym.compose:mediacontrol:<latest>"
var mediaProgress by mutableStateOf(0f)
ProgressBar(
mediaProgress,
onSeek = {
mediaProgress = it
},
modifier = Modifier.fillMaxWidth().padding(16.dp)
)A library to provide customisable media control components.
implementation "cl.emilym.compose:mediacontrol:<latest>"
var mediaProgress by mutableStateOf(0f)
ProgressBar(
mediaProgress,
onSeek = {
mediaProgress = it
},
modifier = Modifier.fillMaxWidth().padding(16.dp)
)