Is it possible to make a growing Text
Composable physically scrollable when the text reaches a specific length instead of this happening only when it reaches its container bounds? I want to allow the user to physically scroll the Text
Composable above a specific text length before it reaches its container bounds.
Current Composable
val scrollState = rememberScrollState(0)
Text(
text = growingText,
modifier = Modifier.horizontalScroll(scrollState),
color = Color.Gray
)