Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: IndexTrackingViewModel #973

Merged
merged 7 commits into from
Jun 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add RouterServiceInterface to Stacked package
ferrarafer committed May 31, 2023
commit 8c5a15c40bf5ba22dbfa96364b3a0285f30d49ac
7 changes: 7 additions & 0 deletions lib/src/router/router_service_interface.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import 'package:stacked/stacked.dart';

abstract class RouterServiceInterface {
RootStackRouter get router;

RouteData get topRoute;
}
1 change: 1 addition & 0 deletions lib/stacked.dart
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@ export 'src/router/controller/routing_controller.dart';
/// Navigator 2.0 Exports
export 'src/router/matcher/route_match.dart';
export 'src/router/navigation_failure.dart';
export 'src/router/router_service_interface.dart';
export 'src/router/parser/route_information_parser.dart';
export 'src/router/route/page_route_info.dart';
export 'src/router/route/route_config.dart';