Web feed

This commit is contained in:
2025-06-30 23:33:14 +08:00
parent 666a2dfbf5
commit d6c829c26a
18 changed files with 1351 additions and 53 deletions

View File

@@ -370,9 +370,9 @@ class CreatorHubScreen extends HookConsumerWidget {
ListTile(
minTileHeight: 48,
title: Text('publisherMembers').tr(),
trailing: Icon(Symbols.chevron_right),
trailing: const Icon(Symbols.chevron_right),
leading: const Icon(Symbols.group),
contentPadding: EdgeInsets.symmetric(
contentPadding: const EdgeInsets.symmetric(
horizontal: 24,
),
onTap: () {
@@ -387,6 +387,20 @@ class CreatorHubScreen extends HookConsumerWidget {
);
},
),
ListTile(
minTileHeight: 48,
title: const Text('Web Feeds').tr(),
trailing: const Icon(Symbols.chevron_right),
leading: const Icon(Symbols.rss_feed),
contentPadding: const EdgeInsets.symmetric(
horizontal: 24,
),
onTap: () {
context.push(
'/creators/${currentPublisher.value!.name}/feeds',
);
},
),
ExpansionTile(
title: Text('publisherFeatures').tr(),
leading: const Icon(Symbols.flag),