Reputation: 1013
How can I disable and re-enable dragging on a scrollview in Famo.us?
Upvotes: 0
Views: 83
Reputation: 2755
I can imagine any of these methods would work:
I don't think there is an easier way to do this with the stock ScrollView though..
Alternatively, you could use the FlexScrollView, which contains an option for it:
var scrollView = new FlexScrollView({
enabled: true
});
// disable
scrollView.setOptions({
enabled: false
});
Tutorial: https://github.com/IjzerenHein/famous-flex/blob/master/tutorials/FlexScrollView.md
Upvotes: 1