material_table_view
material_table_view copied to clipboard
[QUESTION] Disabling vertical scroll
Can you suggest, how to disable vertical scroll for showing TableView inside another widget with vertical scrolling? I have an idea about wrapping TableView inside SizedBox(height: rowHeight * rowCount) but maybe lib has more convenient way?
@NaikSoftware, currently there is no convenient way of doing this for TableView. An idea of implementing vertical shirnk wrap has crossed my mind tho.
That said, I don't think it is a good idea for your use case. Have you considered using SliverTableView alongside other widgets you need inside a CustomScrollView? That way only visible portion of the table will be built, layed out and rendered.