Reverse order #63
Answered
by
ImaginativeShohag
sumedhulhe
asked this question in
Q&A
-
Is there any implementation for the sliding in reverse order? |
Beta Was this translation helpful? Give feedback.
Answered by
ImaginativeShohag
Nov 2, 2021
Replies: 1 comment
-
No. But you can use the CoroutineScope(Dispatchers.Main).launch {
while (isActive) {
delay(1000)
binding.carousel.previous()
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ImaginativeShohag
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No. But you can use the
previous()
method to manually create auto-reverse sliding for infinite carousel. Example: