I have observed that Spark List constructor is adding below event. But I see that the same is not removed anywhere. Moreover the handler is scoped to “private” which means that it cannot be accessed to its descendants.
addEventListener(TouchInteractionEvent.TOUCH_INTERACTION_START,touchInteractionStartHandler);
Reference links :
Then when I extend Spark List component, how could I remove this event listener since the handler is scoped to private. This means that it could not be garbage collected causing memory leak, right? Any ideas to overcome this issue. (OR) is it corrected any of the latest SDK release. Please help
Thanks