1
0
mirror of https://github.com/stonega/tsacdop synced 2025-02-10 00:20:49 +01:00

Remove unused sizedbox

This commit is contained in:
stonegate 2020-07-13 14:31:21 +08:00
parent 1de2e5311e
commit cc61f5381e

View File

@ -502,14 +502,13 @@ class EpisodeGrid extends StatelessWidget {
crossAxisAlignment:
CrossAxisAlignment.center,
children: <Widget>[
layout != Layout.one
? Align(
alignment: Alignment.bottomLeft,
child: _pubDate(context,
episode: episodes[index],
color: _c),
)
: SizedBox(width: 1),
if (layout != Layout.one)
Align(
alignment: Alignment.bottomLeft,
child: _pubDate(context,
episode: episodes[index],
color: _c),
),
Spacer(),
layout != Layout.three &&
episodes[index].duration != 0