TableView Horizontal Scrolling

Is the horizontal scrolling supported by TableView? I tried to insert some data which the total width is larger than the TableView width itself, but it can’t scrool horizontally. I tought it’s like ScrollView, will be able to scroll up/down or left/right.

I tried to search in the forum and the documentation, but no clue :frowning: Is there something I missed, or should I just use ScrollView instead?

Thank you.

TableViews do not support horizontal scrolling.

Rob

You can probably “hack” something together by getting all of your visible row elements as a table and move them all with a touch listener, or nesting it within a scroll view. Neither of which is necessarily elegant.

TableViews do not support horizontal scrolling.

Rob

You can probably “hack” something together by getting all of your visible row elements as a table and move them all with a touch listener, or nesting it within a scroll view. Neither of which is necessarily elegant.