Merge branch 'filenametolong' into 'main'

filename is too long and over the widget

See merge request famedly/fluffychat!1103
pull/444/head
Krille 2 years ago
commit 7dde6250e1

@ -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,
),
),
)
],
),
),

Loading…
Cancel
Save