Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Abhimanyu14/ca5722229e1b9b9753ebc702402474f3 to your computer and use it in GitHub Desktop.

Select an option

Save Abhimanyu14/ca5722229e1b9b9753ebc702402474f3 to your computer and use it in GitHub Desktop.
@Composable
fun VerticalAndHorizontalScrollingTextDemo() {
Text(
text = randomText,
modifier = Modifier
.verticalScroll(rememberScrollState())
.horizontalScroll(rememberScrollState())
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment