I want to do the following:
Column(modifier = modifier.verticalScroll().clickable(
onClick = actionStartActivity(MainActivity::class.java)
)) {
Text(text = "some really long text")
}
The problem is that there is no verticalScroll modifier, so the only way I can figure out how to get the content to scroll is by using a LazyColumn, however if I try to add a clickable modifier to the LazyColumn then the widget won't load. If I wrap the LazyColumn in a Column I can then add the clickable modifier to the Column, but then clicking anywhere on the text only briefly highlights the text, it doesn't perform the clickable action.
Is there a way to accomplish this currently in Glance?