Answers for "hide horizental scroll bar in flatlist"

1

react native flatlist hide scrollbar

disable vertical and horizontal scroll indicator

<ScrollView
  showsVerticalScrollIndicator={false}
  showsHorizontalScrollIndicator={false}
 />
Posted by: Guest on March-18-2021
0

how to remove scrollbar for flatlist horizontal

<ScrollView
  showsVerticalScrollIndicator={false}
  showsHorizontalScrollIndicator={false}
 />
Posted by: Guest on February-21-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language