finished message popup view

This commit is contained in:
Kima
2024-01-02 22:46:14 +01:00
parent 4a6fabd47d
commit 45bf766d1c
4 changed files with 116 additions and 53 deletions

View File

@@ -47,7 +47,8 @@ class AttachmentTile extends StatelessWidget {
return Center(
child: Padding(
padding: const EdgeInsets.all(12.0),
child: CircularProgressIndicator(color: Theme.of(context).colorScheme.secondary),
child: CircularProgressIndicator(
color: Theme.of(context).colorScheme.secondary),
));
}
},
@@ -72,7 +73,8 @@ class AttachmentTile extends StatelessWidget {
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 12.0),
child: Text(attachment.name, maxLines: 2, overflow: TextOverflow.ellipsis),
child: Text(attachment.name,
maxLines: 2, overflow: TextOverflow.ellipsis),
),
),
]),