I am building a data table CRUDing app which requires horizontally scrolling on some tables with a larger amount of columns. I have it working to where a two-finger-drag on a track pad will scroll horizontally perfectly fine, but no scroll bar is shown. I need a scroll bar to be present in order to allow horizontal scroll with a mouse. The scroll bar is enabled in settings and is working in other parts of the app, also the scroll bar is present in the editor, but not in test-mode or deployed version. Here is the hierarchy structure of the feature:
Row (Expanded expansion, scrollable)
Container (Default expansion, width set to 2000, undefined height,
Column (Aligned center-left, expanded main axis size)
Container (Default expansion, Holds table headers, inf width, 40 height)
Container (Expanded expansion, Holds table ListView which isn't shrink-wrapped, inf
width, 40 height)
And here is the page structure including what is above:
There should be a scroll bar visible at the bottom (shown in red)
Any help with getting this scroll bar visible would be much appreciated. Thank you all!