Quick search

Table Of Contents

EffectsΒΆ

New in version 1.7.0.

Everything start with the KineticEffect, the base class for computing velocity out of a movement.

This base class is used to implement ScrollEffect, base class used for our ScrollView widget effect. We have multiple implementation:

  • ScrollEffect: base class used for implementing an effect. It only calculate the scrolling and the overscroll.
  • DampedScrollEffect: use the overscroll information to allow the user to drag more than expected. Once the user stop the drag, the position is back to one of the bounds.
  • OpacityScrollEffect: use the overscroll information to reduce the opacity of the scrollview widget. One the user stop the drag, the opacity back to one.