I have stack of ScrollViews which has a list of surfaces within it.
I need to stack the scrollviews properly. But for stacking surfaces im able to do it by zIndex property ?
But im not able to set zIndex property for ScrollView ?
this works
this.surface.setProperties({
zIndex: index
});
this doesn't
this.scrollview.setProperties({
zIndex: index
});
Whats an equivalent function to set zIndex for scrollview.
Thanks.