We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, the TransformerPageView is working normally in android but no scroll in windows !
TransformerPageView
The text was updated successfully, but these errors were encountered:
solved by editing the package to allow providing of custom ScrollBehavior to the PageView.builder:
ScrollBehavior
PageView.builder
TransformerPageView( scrollBehavior: MyCustomScrollBehavior(), ....... )
class MyCustomScrollBehavior extends MaterialScrollBehavior { @override Set<dd.PointerDeviceKind> get dragDevices => { dd.PointerDeviceKind.touch, dd.PointerDeviceKind.mouse, }; }
Default drag scrolling devices please allow it by default
Sorry, something went wrong.
That is WAI by the Flutter team, Windows users do not expect to be able to drag the screen with the mouse.
No branches or pull requests
Hey,
the
TransformerPageView
is working normally in android but no scroll in windows !The text was updated successfully, but these errors were encountered: