React-native: some way to hide scrollbar in ScrollView

Created on 5 Nov 2015  路  12Comments  路  Source: facebook/react-native

Is there some way to hide the scrollbar of the ScrollView

Locked

Most helpful comment

Sure! Its in the docs 馃槃 https://facebook.github.io/react-native/docs/scrollview.html#showshorizontalscrollindicator

showsHorizontalScrollIndicator={false]

All 12 comments

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

set
showsVerticalScrollIndicator={false}
/>

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

Was this page helpful?
0 / 5 - 0 ratings