codegrue / flutter_material_pickers

A flutter package for displaying common picker dialogs.
https://pub.dev/packages/flutter_material_pickers
MIT License
98 stars 61 forks source link

[BUG] Scroll doesn't work on web #46

Open Carmelo992 opened 1 year ago

Carmelo992 commented 1 year ago

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,
                ....