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