Skip to content

Instantly share code, notes, and snippets.

@jacobaraujo7
Created December 15, 2020 03:45
Show Gist options
  • Save jacobaraujo7/d01565e324800f27ea843d4b6d5e43a4 to your computer and use it in GitHub Desktop.
Save jacobaraujo7/d01565e324800f27ea843d4b6d5e43a4 to your computer and use it in GitHub Desktop.
@override
final List<ModularRoute> routes = [
ChildRoute('/', child: (_, args) => HomePage()),
ChildRoute('/details/:id',
child: (_, args) => DetailsPage(id: args?.params?['id'])),
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment