forked from flutter/packages
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathgo_router.dart
More file actions
22 lines (20 loc) · 789 Bytes
/
go_router.dart
File metadata and controls
22 lines (20 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// A declarative router for Flutter based on Navigation 2 supporting
/// deep linking, data-driven routes and more.
library go_router;
export 'src/configuration.dart'
show
GoRoute,
GoRouterState,
RouteBase,
ShellRoute,
NestedNavigationShellRoute;
export 'src/misc/extensions.dart';
export 'src/misc/inherited_router.dart';
export 'src/pages/custom_transition_page.dart';
export 'src/platform.dart' show UrlPathStrategy;
export 'src/route_data.dart' show GoRouteData, TypedGoRoute;
export 'src/router.dart';
export 'src/typedefs.dart' show GoRouterPageBuilder, GoRouterRedirect;