Flutter-route-transition icon indicating copy to clipboard operation
Flutter-route-transition copied to clipboard

Named routes

Open billymahmood opened this issue 6 years ago • 1 comments

Hi amazing work, I just wanted to know if it's possible to use this code with named routes?

Thank you.

billymahmood avatar Aug 21 '19 14:08 billymahmood

onGenerateRoute: (RouteSettings settings){ switch(settings.name){ case SecondPage.routeName: Map<String, dynamic> args = settings.arguments; return EnterExitRoute(exitPage: FirstPage(), enterPage: SecondPage(param: args["param"],)); case ThirdPage.routeName: return EnterExitRoute(exitPage: SecondPage(), enterPage: ThirdPage()); } return null; }, cheers

LtotheWT avatar Oct 26 '19 13:10 LtotheWT