Skip to content

Commit

Permalink
feat(nav): add control tts page to routes
Browse files Browse the repository at this point in the history
  • Loading branch information
becooq81 committed May 16, 2024
1 parent 373589f commit 16aa8ab
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/src/nav/nav.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ GoRouter createRouter(AppStateNotifier appStateNotifier) => GoRouter(
return const MedRecognitionPageWidget();
}
),
GoRoute(
name: 'ControlTTSPage',
path: '/controlTTSPage',
builder: (BuildContext context, GoRouterState state) {
return const ControlTTSPageWidget();
}
),
GoRoute(
name: 'AccessibilityChoicePage',
path: '/accessibilityChoicePage',
Expand Down

0 comments on commit 16aa8ab

Please sign in to comment.