fix: Too long file name cause a render overflow

This commit is contained in:
Skying 2023-05-16 16:55:19 +00:00 committed by Krille
parent 0d12c31393
commit 15b655413d
1 changed files with 10 additions and 7 deletions

View File

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