'How to make Text scrollable in Jetpack Compose

I want to create a scrollable Text in Jetpack Compose.

In View system, we can make text scrollable by using:

android:scrollbars = "vertical" and textview.setMovementMethod(new ScrollingMovementMethod());

Please help me!

I tried using Modifier.verticalScroll(rememberScrollState()) but it doesn't work



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source