How to make a Text or TextField which will scroll its content automatically horizontally while content is longer than size in android jetpack compose? Like horizontal Marque
I know that I can use:
modifier = Modifier.fillMaxWidth(0.7f).horizontalScroll(rememberScrollState())
but it doesn't scroll automatically, I have to drag it.