0

Is there a way to catch an onScroll event in ListView like it is done for ScrollView?
It is not exposed in SDK, any solution using module or hyperloop is welcome

YakovL
  • 7,557
  • 12
  • 62
  • 102
Said CHAOUCHE
  • 695
  • 6
  • 17
  • Please add a link to what you refer when speaking about `ScrollView`. You should really show some attempts of yours so that we can help you. – YakovL Oct 08 '18 at 17:33

1 Answers1

0

There is scrollstart and scrollend on a listview, check the docs https://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.ListView-event-scrollend

Flame
  • 6,663
  • 3
  • 33
  • 53
  • and of course `scrolling` https://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.ListView-event-scrolling On Android you'll get a scroll event whenever you change direction, on iOS it will only fire when the finger is released. – miga Oct 14 '18 at 11:53