2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-07-07 20:07:24 +02:00

Merge branch 'filenametolong' into 'main'

filename is too long and over the widget

See merge request 
This commit is contained in:
Krille 2023-05-16 16:55:19 +00:00
commit a838ba3000

@ -37,14 +37,17 @@ class MessageDownloadContent extends StatelessWidget {
color: textColor,
),
const SizedBox(width: 16),
Text(
filename,
maxLines: 1,
style: TextStyle(
color: textColor,
fontWeight: FontWeight.bold,
Flexible(
child: Text(
filename,
maxLines: 1,
style: TextStyle(
color: textColor,
fontWeight: FontWeight.bold,
),
overflow: TextOverflow.ellipsis,
),
),
)
],
),
),