10-17-2012 11:55 AM
I need the ability to remove the scroll indicators on scrollviews.
ListView has the ability to remove the scroll indicators using scrollIndicatorMode and settings it using bb::cascades:
crollIndicatorMode::Type.
This functionality is not provided in the ScrollView.
Is there a way to remove the scroll indicators on scroll views or will this be provided in the next Beta release?
Thanks,
Josh
01-03-2013 10:57 AM - edited 01-03-2013 10:58 AM
Hi jdwilks,
Thanks for your question!
There is currently no way to remove the scroll indictors in a scrollview. However, here are two workaround options you can try:
Page {
Container {
layout: AbsoluteLayout {
}
ScrollView {
scrollViewProperties.scrollMode: ScrollMode.Both
layoutProperties: AbsoluteLayoutProperties {
positionY: -20
positionX: 20
}
translationX: -20
preferredWidth: 768 + 20
preferredHeight: 1280 + 20
ImageView {
imageSource: "asset:///images/myimage.png"
preferredHeight: 5000
preferredWidth: 5000
}
}
}
}
If this reply has answered your question, please accept as solution!
Samar