✨ ActivityPub service impl basis
This commit is contained in:
23
lib/route_activitypub.patch
Normal file
23
lib/route_activitypub.patch
Normal 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,
|
||||
),
|
||||
),
|
||||
Reference in New Issue
Block a user