react native flatlist hide scrollbar

Solutions on MaxInterview for react native flatlist hide scrollbar by the best coders in the world

showing results for - "react native flatlist hide scrollbar"
Lucia
16 Jul 2019
1disable vertical and horizontal scroll indicator
2
3<ScrollView
4  showsVerticalScrollIndicator={false}
5  showsHorizontalScrollIndicator={false}
6 />