Grouped chat

This commit is contained in:
2025-12-22 00:25:29 +08:00
parent a481b1b82f
commit 595aa45378
7 changed files with 216 additions and 51 deletions

View File

@@ -819,6 +819,20 @@ class SettingsScreen extends HookConsumerWidget {
},
),
),
// Grouped chat list settings
ListTile(
minLeadingWidth: 48,
title: Text('settingsGroupedChatList').tr(),
contentPadding: const EdgeInsets.only(left: 24, right: 17),
leading: const Icon(Symbols.chat),
trailing: Switch(
value: settings.groupedChatList,
onChanged: (value) {
ref.read(appSettingsProvider.notifier).setGroupedChatList(value);
},
),
),
];
// Desktop-specific settings