Transcript - Jetpack Compose

In Jetpack Compose, you can use a Text Composable to display written text. Don't forget to add verticalScroll modifier, to make the text scrollable.

    Text(
        text = "Appt transcript",
        modifier = Modifier.horizontalScroll(rememberScrollState())
    )