In Tizen 4.0, I'm using a scroller which provides multiple events when it's being scrolled, or dragged.
There is this event: "scroll,drag,start", and its callback:
static void scrollDragStart(void* data, Evas_Object* obj, void *event_info) { }
My question is simple: is there any way to determine the direction of the scroller's dragging?
(I know there are events with direction like "scroll,up", but it comes later after the drag event.)