Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Abhimanyu14/50f71ad61964836178b475f929fcfe93 to your computer and use it in GitHub Desktop.
Save Abhimanyu14/50f71ad61964836178b475f929fcfe93 to your computer and use it in GitHub Desktop.
@Composable
fun VerticalAndHorizontalScrollingWithFixedHeightAndWidthTextDemo() {
Text(
text = randomText,
modifier = Modifier
.height(300.dp)
.width(300.dp)
.verticalScroll(rememberScrollState())
.horizontalScroll(rememberScrollState())
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment