info: fixed typo
This commit is contained in:
parent
afdcdc8745
commit
d42ad00688
1 changed files with 1 additions and 2 deletions
|
@ -26,7 +26,7 @@ class BasicSection extends StatelessWidget {
|
||||||
if (entry.isVideo) ..._buildVideoRows(),
|
if (entry.isVideo) ..._buildVideoRows(),
|
||||||
InfoRow('Resolution', resolutionText),
|
InfoRow('Resolution', resolutionText),
|
||||||
InfoRow('Size', formatFilesize(entry.sizeBytes)),
|
InfoRow('Size', formatFilesize(entry.sizeBytes)),
|
||||||
InfoRow('Uri', entry.uri),
|
InfoRow('URI', entry.uri),
|
||||||
InfoRow('Path', entry.path),
|
InfoRow('Path', entry.path),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
@ -34,7 +34,6 @@ class BasicSection extends StatelessWidget {
|
||||||
|
|
||||||
List<Widget> _buildVideoRows() {
|
List<Widget> _buildVideoRows() {
|
||||||
final rotation = entry.catalogMetadata?.videoRotation;
|
final rotation = entry.catalogMetadata?.videoRotation;
|
||||||
if (rotation != null) InfoRow('Rotation', '$rotation°');
|
|
||||||
return [
|
return [
|
||||||
InfoRow('Duration', entry.durationText),
|
InfoRow('Duration', entry.durationText),
|
||||||
if (rotation != null) InfoRow('Rotation', '$rotation°'),
|
if (rotation != null) InfoRow('Rotation', '$rotation°'),
|
||||||
|
|
Loading…
Reference in a new issue