chore: remove unused detail screen components

This commit is contained in:
2026-05-19 20:15:49 +02:00
parent 845276bac7
commit 05231ee9cf
3 changed files with 0 additions and 222 deletions
-9
View File
@@ -10,7 +10,6 @@ import 'features/shell/main_shell.dart';
import 'features/floorplan/floor_plan_screen.dart';
import 'features/sensors/sensor_list_screen.dart';
import 'features/tags/tag_list_screen.dart';
import 'features/tags/tag_detail_screen.dart';
import 'features/settings/settings_screen.dart';
import 'providers.dart';
@@ -69,14 +68,6 @@ final routerProvider = Provider<GoRouter>((ref) {
GoRoute(
path: '/tags',
builder: (context, state) => const TagListScreen(),
routes: [
GoRoute(
path: ':id',
builder: (context, state) => TagDetailScreen(
tagId: state.pathParameters['id']!,
),
),
],
),
]),
StatefulShellBranch(routes: [