fix(backups): Add text alignment to the left

- Resolve: #434
pull/500/head
NaiJi ✨ 2024-04-17 21:48:28 +04:00
parent 8a757a70ea
commit 0de6afd2d1
1 changed files with 4 additions and 4 deletions

View File

@ -122,9 +122,6 @@ class _CreateBackupsModalState extends State<CreateBackupsModal> {
),
),
);
descriptionWidgets.add(
const SizedBox(height: 4),
);
descriptionWidgets.add(
Text(service.backupDescription),
);
@ -148,7 +145,10 @@ class _CreateBackupsModalState extends State<CreateBackupsModal> {
title: Text(
service.displayName,
),
subtitle: Column(children: descriptionWidgets),
subtitle: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: descriptionWidgets,
),
secondary: SvgPicture.string(
service.svgIcon,
height: 24,