Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nativescript: How to hide scroll indicator on scrollview

is there a way to hide the scroll indicator on scrollview of nativescript? I tried scrollBars='none' and css overflow='hidden' but its not working both. Thanks

like image 373
Camille Lagrama Avatar asked Sep 27 '22 02:09

Camille Lagrama


1 Answers

You may try something like this:

<ScrollView scrollBarIndicatorVisible="false">...</ScrollView>

like image 87
Harshvardhan Singh Baghel Avatar answered Sep 30 '22 08:09

Harshvardhan Singh Baghel