fix(mobile): enable backup text overflows (#24227)
parent
1f6eb662e5
commit
f12f609038
|
|
@ -143,11 +143,13 @@ class BackupToggleButtonState extends ConsumerState<BackupToggleButton> with Sin
|
||||||
Row(
|
Row(
|
||||||
crossAxisAlignment: CrossAxisAlignment.center,
|
crossAxisAlignment: CrossAxisAlignment.center,
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Flexible(
|
||||||
"enable_backup".t(context: context),
|
child: Text(
|
||||||
style: context.textTheme.titleMedium?.copyWith(
|
"enable_backup".t(context: context),
|
||||||
fontWeight: FontWeight.w600,
|
style: context.textTheme.titleMedium?.copyWith(
|
||||||
color: context.primaryColor,
|
fontWeight: FontWeight.w600,
|
||||||
|
color: context.primaryColor,
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue