kalismeras61 / flutter_page_transition

This is Flutter Page Transition Package
BSD 2-Clause "Simplified" License
471 stars 56 forks source link

onGenerateRoute #86

Open only2433 opened 3 months ago

only2433 commented 3 months ago

Using onGenerateRoute, I want to implement PageTransitionType.rightToLeftJoined.

kalismeras61 commented 3 months ago

Using onGenerateRoute, I want to implement PageTransitionType.rightToLeftJoined.

onGenerateRoute: (settings) { switch (settings.name) { case '/second': return PageTransition(child: SecondPage(), type: PageTransitionType.rightToLeftJoined); break; default: return null; } },

s4nk37 commented 3 months ago

Not working getting below error in onGenerateRoute switch statement. The return type 'Object' isn't a 'Widget', as required by the closure's context.