flutter / samples

A collection of Flutter examples and demos

Home Page:https://flutter.github.io/samples/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable mouse scrollBehavior on carousel sample

jonasjuni opened this issue · comments

Steps to reproduce

Open carousel on web:
https://flutter.github.io/samples/web/animations/#/misc/carousel

You can't drag to change images.

would be a good ideia to add mouse as a drag device on PageView in this example?

      scrollBehavior: ScrollConfiguration.of(context).copyWith(
        dragDevices: {
          PointerDeviceKind.touch,
          PointerDeviceKind.mouse,
        },
      ),

Please create a PR and sign the CLA. Thanks!