Remove unused sizedbox
This commit is contained in:
parent
cc61f5381e
commit
8fee2dec59
|
@ -338,17 +338,14 @@ class _DownloadsManageState extends State<DownloadsManage> {
|
|||
_episodes[index]
|
||||
.pubDate)),
|
||||
SizedBox(width: 20),
|
||||
_episodes[index]
|
||||
.enclosureLength !=
|
||||
0
|
||||
? Text(((_episodes[index]
|
||||
.enclosureLength) ~/
|
||||
1000000)
|
||||
.toString() +
|
||||
' Mb')
|
||||
: SizedBox(
|
||||
width: 1,
|
||||
),
|
||||
if (_episodes[index]
|
||||
.enclosureLength !=
|
||||
0)
|
||||
Text(((_episodes[index]
|
||||
.enclosureLength) ~/
|
||||
1000000)
|
||||
.toString() +
|
||||
' Mb'),
|
||||
],
|
||||
),
|
||||
trailing: Checkbox(
|
||||
|
|
Loading…
Reference in New Issue