The <Animation Quick Guide> has the following for ...
# compose-android
b
The Animation Quick Guide has the following for repeating animations:
Use
rememberInfiniteTransition
with an
infiniteRepeatable
animationSpec
to continuously repeat your animation. Change
RepeatModes
to specify how it should go back and forth.
Use
finiteRepeatable
to repeat a set number of times.
But I can't find a
finiteRepeatable
api anywhere. Am I missing something?
e
infiniteRepeatable
is the infinite one
repeatable
is the finite one, with a count, that OP could not find (because the quick guide had the wrong name)
b
thanks folks!