feat(navigation): add routes for installed apps and app usage schedules

This commit is contained in:
2026-04-26 05:13:01 +02:00
parent 440adcdf8d
commit bbdaa25e12
4 changed files with 26 additions and 1 deletions

View File

@@ -212,6 +212,19 @@ void configureAppRouter() {
name: 'background_image',
pageBuilder: const BackgroundImageBuilder().buildPage,
),
GoRoute(
path: 'installed_apps',
name: 'installed_apps',
pageBuilder: const InstalledAppsBuilder().buildPage,
routes: [
GoRoute(
path: 'schedules',
name: 'app_usage_schedules',
pageBuilder:
const AppUsageSchedulesBuilder().buildPage,
),
],
),
],
),
],