horizontal scrollbar in scroll view?

I have two pages with scroll views. Ones vertical and has a scrollbar and ones horizontal and the scrollbar doesnt show up. Is there anything that needs to be done differently to get the default scrollbars for horizontal scroll views?

 self.scrollView = widget.newScrollView { top = 20, left = 20, width = \_WIDTH - 40, height = 200, scrollWidth = 0, verticalScrollDisabled = true, horizontalScrollDisabled = false, --backgroundColor = { 0.8, 0.8, 0.8 }, hideBackground = true, isBounceEnabled = true, hideScrollBar = false, }

After going through the open source widget code I saw that horizontal scrollbars are not actually supported. It would be really useful if this was actually mentioned in the documentation. I see now a lot of people have asked the same questions on this forum about why the scrollbars do not show up.

My solution to this was to create my own scrollbar from scratch.

After going through the open source widget code I saw that horizontal scrollbars are not actually supported. It would be really useful if this was actually mentioned in the documentation. I see now a lot of people have asked the same questions on this forum about why the scrollbars do not show up.

My solution to this was to create my own scrollbar from scratch.