Better fediverse content

This commit is contained in:
2026-01-02 03:08:50 +08:00
parent d7858bab67
commit cb9eca0424
17 changed files with 580 additions and 82 deletions

View File

@@ -794,6 +794,22 @@ class SettingsScreen extends HookConsumerWidget {
),
),
// Show fediverse content settings
ListTile(
minLeadingWidth: 48,
title: Text('settingsShowFediverseContent').tr(),
contentPadding: const EdgeInsets.only(left: 24, right: 17),
leading: const Icon(Symbols.public),
trailing: Switch(
value: settings.showFediverseContent,
onChanged: (value) {
ref
.read(appSettingsProvider.notifier)
.setShowFediverseContent(value);
},
),
),
// Default screen settings
ListTile(
minLeadingWidth: 48,