Код: Выделить всё
Column(
modifier = Modifier
.fillMaxWidth()
.verticalScroll(rememberScrollState())
.pointerInput(Unit) {
detectVerticalDragGestures { change, _ ->
Log.i(TAG, "HomeScreen: position: ${change.position}")
}
},
) {
repeat(100) {
Text(text = "Hello")
}
}
Я не знаю, почемувертикальныйScroll(rememberScrollState())< /code> и defineVerticalDragGestures не работают вместе.
Подробнее здесь: https://stackoverflow.com/questions/782 ... in-compose
Мобильная версия