🗑️ Remove unused activitypub screens

This commit is contained in:
2026-01-02 17:02:04 +08:00
parent 8c1ad94555
commit a44552f105
3 changed files with 0 additions and 167 deletions

View File

@@ -6,7 +6,6 @@ import 'package:flutter/foundation.dart' show kIsWeb;
import 'package:go_router/go_router.dart';
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:island/screens/about.dart';
import 'package:island/screens/activitypub/list.dart';
import 'package:island/screens/dashboard/dash.dart';
import 'package:island/screens/developers/app_detail.dart';
import 'package:island/screens/developers/bot_detail.dart';
@@ -208,19 +207,6 @@ final routerProvider = Provider<GoRouter>((ref) {
builder: (context, state) => const UniversalSearchScreen(),
),
GoRoute(
name: 'activitypubFollowing',
path: '/activitypub/following',
builder: (context, state) =>
const ApListScreen(type: ActivityPubListType.following),
),
GoRoute(
name: 'activitypubFollowers',
path: '/activitypub/followers',
builder: (context, state) =>
const ApListScreen(type: ActivityPubListType.followers),
),
// Main tabs with TabsScreen shell
ShellRoute(
navigatorKey: _tabsShellKey,