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
Using onGenerateRoute, I want to implement PageTransitionType.rightToLeftJoined.
The text was updated successfully, but these errors were encountered:
onGenerateRoute: (settings) { switch (settings.name) { case '/second': return PageTransition(child: SecondPage(), type: PageTransitionType.rightToLeftJoined); break; default: return null; } },
Sorry, something went wrong.
Not working getting below error in onGenerateRoute switch statement. The return type 'Object' isn't a 'Widget', as required by the closure's context.
The return type 'Object' isn't a 'Widget', as required by the closure's context.
No branches or pull requests
Using onGenerateRoute, I want to implement PageTransitionType.rightToLeftJoined.
The text was updated successfully, but these errors were encountered: