feat: Implement private read receipts
This commit is contained in:
parent
15e40b14be
commit
8ec3497b54
7 changed files with 26 additions and 3 deletions
|
|
@ -70,6 +70,12 @@ class SettingsChatView extends StatelessWidget {
|
|||
storeKey: SettingKeys.sendTypingNotifications,
|
||||
defaultValue: AppConfig.sendTypingNotifications,
|
||||
),
|
||||
SettingsSwitchListTile.adaptive(
|
||||
title: L10n.of(context)!.sendReadReceipts,
|
||||
onChanged: (b) => AppConfig.sendPublicReadReceipts = b,
|
||||
storeKey: SettingKeys.sendPublicReadReceipts,
|
||||
defaultValue: AppConfig.sendPublicReadReceipts,
|
||||
),
|
||||
SettingsSwitchListTile.adaptive(
|
||||
title: L10n.of(context)!.sendOnEnter,
|
||||
onChanged: (b) => AppConfig.sendOnEnter = b,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue