|
|
@ -70,6 +70,12 @@ class SettingsChatView extends StatelessWidget {
|
|
|
|
storeKey: SettingKeys.sendTypingNotifications,
|
|
|
|
storeKey: SettingKeys.sendTypingNotifications,
|
|
|
|
defaultValue: AppConfig.sendTypingNotifications,
|
|
|
|
defaultValue: AppConfig.sendTypingNotifications,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
SettingsSwitchListTile.adaptive(
|
|
|
|
|
|
|
|
title: L10n.of(context)!.sendReadReceipts,
|
|
|
|
|
|
|
|
onChanged: (b) => AppConfig.sendPublicReadReceipts = b,
|
|
|
|
|
|
|
|
storeKey: SettingKeys.sendPublicReadReceipts,
|
|
|
|
|
|
|
|
defaultValue: AppConfig.sendPublicReadReceipts,
|
|
|
|
|
|
|
|
),
|
|
|
|
SettingsSwitchListTile.adaptive(
|
|
|
|
SettingsSwitchListTile.adaptive(
|
|
|
|
title: L10n.of(context)!.sendOnEnter,
|
|
|
|
title: L10n.of(context)!.sendOnEnter,
|
|
|
|
onChanged: (b) => AppConfig.sendOnEnter = b,
|
|
|
|
onChanged: (b) => AppConfig.sendOnEnter = b,
|
|
|
|