It seems scrolling up is broken on ios.
@Composable
fun MarkdownTestScreen() {
val listItems = List(size = 20) { index ->
"Plain text item ${index + 1}".repeat(30)
}
LazyColumn(
modifier = Modifier
.fillMaxSize()
.background(Color.White)
.padding(horizontal = 20.dp, vertical = 40.dp),
verticalArrangement = Arrangement.spacedBy(20.dp)
) {
items(listItems) { itemText ->
val markdownState = rememberMarkdownState(
itemText,
retainState = true
)
Markdown(
markdownState,
)
}
}
}
Bug Description
It seems scrolling up is broken on ios.
Steps to Reproduce
Screenshots
bug1.mp4
Environment
Additional Context
Android works fine
Checklist