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
First! Thank for your package. It saves me a lot of time. Hope I can help you with this "Request"
--> This is my code
... void animationToPage(int page) { nextPageIndex = page; animatedPageDragger = AnimatedPageDragger( slideDirection: activePageIndex > nextPageIndex ? SlideDirection.leftToRight : SlideDirection.rightToLeft, transitionGoal: TransitionGoal.open, slidePercent: slidePercent, slideUpdateStream: slideUpdateStream, vsync: this, ); animatedPageDragger.run(); } ... void onPressedBack() { animationToPage(max(0, activePageIndex - 1)); } void onPressedNext() { animationToPage(min(widget.pages.length - 1, activePageIndex + 1)); } void onPressedSkip() { animationToPage(widget.pages.length - 1); } ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
First! Thank for your package. It saves me a lot of time.
Hope I can help you with this "Request"
--> This is my code
The text was updated successfully, but these errors were encountered: