PeterStaev / NativeScript-Grid-View

A NatvieScript GridView widget.
Apache License 2.0
49 stars 28 forks source link

How to hide scroll bar #36

Closed LSmint closed 6 years ago

LSmint commented 6 years ago

I want to hide the vertical scrollbar view in the gridview, anyone can provide some advice ?

PeterStaev commented 6 years ago

Hey @LSmint , from what not sure what platform is this, but from what I see on android this is not possible: https://stackoverflow.com/a/27298868/5272836.

For iOS you should be able to do it via:

const gv = page.getViewById<GridView>("gv");
gv.ios.setShowsHorizontalScrollIndicator(false);
gv.ios.setShowsVerticalScrollIndicator(false);
LSmint commented 6 years ago

Thanks @PeterStaev your answer, it's works! I yet to try Android but may try for following this. android.setVerticalScrollBarEnabled(false); android.setHorizontalScrollBarEnabled(false); android.requestDisallowInterceptTouchEvent(true);

PeterStaev commented 6 years ago

No further response so closing this one for now.