From f12f609038cb2dc1c8dec38af458e015ad9f0e94 Mon Sep 17 00:00:00 2001 From: Yaros Date: Fri, 28 Nov 2025 17:18:44 +0100 Subject: [PATCH] fix(mobile): enable backup text overflows (#24227) --- .../widgets/backup/backup_toggle_button.widget.dart | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mobile/lib/presentation/widgets/backup/backup_toggle_button.widget.dart b/mobile/lib/presentation/widgets/backup/backup_toggle_button.widget.dart index 8d374f74ff..ae4cfbd1c6 100644 --- a/mobile/lib/presentation/widgets/backup/backup_toggle_button.widget.dart +++ b/mobile/lib/presentation/widgets/backup/backup_toggle_button.widget.dart @@ -143,11 +143,13 @@ class BackupToggleButtonState extends ConsumerState with Sin Row( crossAxisAlignment: CrossAxisAlignment.center, children: [ - Text( - "enable_backup".t(context: context), - style: context.textTheme.titleMedium?.copyWith( - fontWeight: FontWeight.w600, - color: context.primaryColor, + Flexible( + child: Text( + "enable_backup".t(context: context), + style: context.textTheme.titleMedium?.copyWith( + fontWeight: FontWeight.w600, + color: context.primaryColor, + ), ), ), ],