• This project
    • Loading...
  • Sign in

flutter_package / fluttertpc_get

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • fluttertpc_get
  • example_nav2
  • lib
  • models
  • demo_product.dart
  • +Fixed middleware parsing · 4ddc3481 ...
    4ddc3481 Browse Files
    +Added redirectDelegate to GetMiddleware, which simplifies creating route guards
    +Introduced `participatesInRootNavigator` which replaces the old `RouterOutletContainerMiddleWare`
    +Introduced `PreventDuplicateHandlingMode.ReorderRoutes` and made it the default recommended option
    +Added route guard example to `example_nav2 `
    Ahmed Fwela authored 2021-07-12 00:22:32 +0200
demo_product.dart 140 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
class DemoProduct {
  final String name;
  final String id;

  DemoProduct({
    required this.name,
    required this.id,
  });
}