Skip to content

Instantly share code, notes, and snippets.

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