Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

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