codegrue / flutter_material_pickers

A flutter package for displaying common picker dialogs.

Home Page:https://pub.dev/packages/flutter_material_pickers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[BUG] Scroll doesn't work on web

Carmelo992 opened this issue · comments

With Flutter 3.3 the scroll doesn't work.

In the class "selection_picker.dart" the Scrollbar must have the same ScrollController of the ListView

ScrollController _controller = ScrollController();

....
Scrollbar(
        controller: _controller,
        child: ListView.builder(
                controller: _controller,
                ....