🗑️ Remove unused stuff

This commit is contained in:
2026-01-02 12:46:42 +08:00
parent c16d8a5912
commit 81d69ce10f
14 changed files with 0 additions and 4885 deletions

View File

@@ -1,23 +0,0 @@
import 'package:island/screens/activitypub/activitypub.dart';
Add to Explore tab routes, after postCategoryDetail route:
GoRoute(
name: 'activitypubSearch',
path: '/activitypub/search',
builder: (context, state) => const ActivityPubSearchScreen(),
),
GoRoute(
name: 'activitypubFollowing',
path: '/activitypub/following',
builder: (context, state) => const ActivityPubListScreen(
type: ActivityPubListType.following,
),
),
GoRoute(
name: 'activitypubFollowers',
path: '/activitypub/followers',
builder: (context, state) => const ActivityPubListScreen(
type: ActivityPubListType.followers,
),
),