feat: add option to configure reply swipe direction

This commit is contained in:
MrSpoony 2024-06-04 00:31:37 +02:00
commit 3f81dc5187
No known key found for this signature in database
6 changed files with 18 additions and 1 deletions

View file

@ -48,6 +48,7 @@ abstract class AppConfig {
static bool autoplayImages = true;
static bool sendTypingNotifications = true;
static bool sendPublicReadReceipts = true;
static bool swipeRightToLeftToReply = true;
static bool? sendOnEnter;
static bool showPresences = true;
static bool experimentalVoip = false;

View file

@ -26,6 +26,8 @@ abstract class SettingKeys {
static const String sendPublicReadReceipts =
'chat.fluffy.send_public_read_receipts';
static const String sendOnEnter = 'chat.fluffy.send_on_enter';
static const String swipeRightToLeftToReply =
'chat.fluffy.swipeRightToLeftToReply';
static const String experimentalVoip = 'chat.fluffy.experimental_voip';
static const String showPresences = 'chat.fluffy.show_presences';
static const String displayChatDetailsColumn =