We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63b7ca commit 331f1aaCopy full SHA for 331f1aa
lib/components/torrent_tile.dart
@@ -94,11 +94,15 @@ class TorrentTile extends StatelessWidget {
94
mainAxisAlignment: MainAxisAlignment.spaceBetween,
95
children: <Widget>[
96
Flexible(
97
- child: Text(
98
- torrent.name,
99
- style: TextStyle(
100
- fontWeight: FontWeight.w600, fontSize: 16),
101
- )),
+ child: Text(
+ torrent.name,
+ maxLines: 1,
+ overflow: TextOverflow.ellipsis,
+ style: TextStyle(
102
+ fontWeight: FontWeight.w600,
103
+ fontSize: 16),
104
+ ),
105
106
107
child: Text(
108
'${filesize(torrent.downloadedData)}${torrent.dlSpeed == 0 ? '' : ' | ' + torrent.getEta}',
0 commit comments