showing horizontal scroll bar flutter

754 views Asked by At

I want to always show the scroll bar below the datatable for the web version. But it's showing this error message:

The Scrollbar's ScrollController has no ScrollPosition attached.

and the scroll bar doesn't work.

Scrollbar(
  isAlwaysShown: true,
  controller: ScrollController(),
  thickness: 10,
  child: PaginatedDataTable(
      showCheckboxColumn: false,
      columns: generateColumns(),
      source: generateDataSources(),
      rowsPerPage: count.toInt()),
);
2

There are 2 answers

0
Dwi Kurnianto M On BEST ANSWER

Well try to remove the controller then ? controller: ScrollController()

1
wilhit On

Just remove the controller: ScrollController(), line or comment it out. and the exception should be cleared. That is how I fixed mine.