maxim-saplin / data_table_2

In-place substitute for Flutter's DataTable and PaginatedDataTable with fixed/sticky header and extra features
https://pub.dev/packages/data_table_2
BSD 3-Clause "New" or "Revised" License
202 stars 135 forks source link

Hide scrollbar #253

Closed stngcoding closed 7 months ago

stngcoding commented 7 months ago

Is there any props that I can set to disable both vertical and horizontal scroll indicator?, I could not find it in the doc

stngcoding commented 7 months ago

Solved by add this to ThemeData

scrollbarTheme: const ScrollbarThemeData().copyWith(
      thumbColor: MaterialStateProperty.all(Colors.transparent),
      thickness: const MaterialStatePropertyAll(0),
    ),