Files
reader-app/lib/app/router/route_names.dart
T
virtus 1afff18f4d feat: Enhance TTS player functionality and UI
- Added resume functionality to TTS player when paused.
- Display voice name or language in TTS player UI.
- Improved error handling in reader provider with debug messages.
- Updated TTS service to configure Vietnamese voice and handle platform-specific audio settings.
- Removed wakelock dependency and related code.
- Fixed search screen error handling.
- Updated settings screen to navigate to home after sign out.
- Improved splash screen with timer management.
- Enhanced main app error handling with logging.
- Removed unused package_info_plus and wakelock_plus dependencies.
- Added environment variable support for mobile runtime.
- Integrated Google Sign-In configuration for Android.
- Created logging observer for Riverpod providers.
- Added scripts for environment setup and Google Sign-In validation.
2026-03-30 11:38:04 +07:00

26 lines
854 B
Dart

class RouteNames {
RouteNames._();
static const splash = '/';
static const home = '/home';
static const login = '/login';
static const search = '/search';
static const genres = '/genres';
static const bookshelf = '/bookshelf';
static const profile = '/profile';
static const settings = '/settings';
// Path-param based routes
static const novelDetailPath = '/novel/:id';
static const readerPath = '/reader/:chapterId';
static const commentsPath = '/comments/:novelId';
// Navigation helpers
static String novelDetail(String id) => '/novel/$id';
static String readerChapter(String chapterId) => '/reader/${Uri.encodeComponent(chapterId)}';
static String commentsFor(String novelId, {String? chapterId}) {
final base = '/comments/$novelId';
return chapterId != null ? '$base?chapterId=$chapterId' : base;
}
}