0

我想在jetpack compose中单击按钮水平滚动视图寻呼机。有人对此有任何想法吗?我在这里使用伴奏库。

4

1 回答 1

1

您需要像这样使用寻呼机状态:

val state = rememberPagerState()
val scope = rememberCoroutineScope()
Button(onClick = {
    scope.launch {
        state.scrollToPage(state.currentPage + 1)
        // or 
        state.scrollBy(100f)
    }
}) {

}
VerticalPager(
    pagesCount,
    state = state
) { page ->

}
于 2022-02-18T05:01:43.827 回答