Is there some way to hide the scrollbar of the ScrollView
seems horizontal scrollbar is hidden in iOS,but not android
Sure! Its in the docs 馃槃 https://facebook.github.io/react-native/docs/scrollview.html#showshorizontalscrollindicator
showsHorizontalScrollIndicator={false]
yeah, showsHorizontalScrollIndicator={false} works on iOS,but not android
Fond it, it's a bug and have been fixed in 14-rc https://github.com/facebook/react-native/commit/e6ad91b5a218bec73a10a9064e9178235b12c557
set
/>
Thank you! Yasicmd
thanks! jforaker
<ScrollView showsVerticalScrollIndicator={false}>
/* Your Codes */
</ScrollView>
thanks @mustafakucuk I have done this long before forgot to mention it here
showsVerticalScrollIndicator={false} works on iOS, android perfectly. I use it to hide vertical-scrollbar in ListView.
<ListView showsVerticalScrollIndicator={false}/>
thank you jforaker
Most helpful comment
Sure! Its in the docs 馃槃 https://facebook.github.io/react-native/docs/scrollview.html#showshorizontalscrollindicator
showsHorizontalScrollIndicator={false]