0

Is there a way to change color of scrollbar in NativeScript ScrollView?

I looked into the API Reference of ScrollView, but can not find any property that can change the color of scrollbar.

Amit Gurbani
  • 577
  • 1
  • 4
  • 21

1 Answers1

1

Changing the scrollbar's color is not supported, I don't think it's even possible in iOS. In Android it may be possible using native apis, you might want to check this SO answer.

If you really want this, you might have to build your own component using touch events and adjust vertical / horizontal offset programatically.

Manoj
  • 21,753
  • 3
  • 20
  • 41