ActivityPub service impl basis

This commit is contained in:
2025-12-29 01:01:47 +08:00
parent eb90dbbc5a
commit bb1a5155ed
31 changed files with 6705 additions and 4091 deletions

View File

@@ -0,0 +1,23 @@
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,
),
),