Refactor de OnSwipeTouchListener y spin de la ruleta hacia la derecha #9
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Refactor de OnSwipeTouchListener y spin de la ruleta hacia la derecha
Se refactorizó del método "onFling" de la clase interna "GestureListener" dentro de la clase "OnSwipeTouchListener" la cual realiza las inferencias y cálculos para detectar el Swip.
Esta refactorización ayudará a las personas que deseen comprender mejor el código detrás del Swip explicado en el curso, al estar más legible y tener menos anidaciones de condicionales.
Se incorporó el parámetro Boolean "isLeft" a la función "spinRoulette" dentro de la clase "LuckFragment", encargada de configurar y disparar la animación de la ruleta. Este parámetro en el código determinará si la animación va de 0f a grados positivos o negativos del aleatorio obtenido en la variable "degrees".
Con este feature la ruleta al hacer swip a la derecha, rotará en sentido horario, mientras que, al hacerlo hacia la izquierda, rotará en sentido antihorario.