Skip to content

Commit

Permalink
Merge pull request #1417 from ardriveapp/PE-4778-missing-normal-playb…
Browse files Browse the repository at this point in the history
…ack-option-video-preview

PE-4778: missing-normal-playback-option-video-preview
  • Loading branch information
kunstmusik authored Oct 11, 2023
2 parents 35706df + dfcde59 commit 693ce98
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions lib/pages/drive_detail/components/fs_entry_preview_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,10 @@ class _VideoPlayerWidgetState extends State<VideoPlayerWidget>
});
},
title: Text(
'$v',
v == 1.0
? appLocalizationsOf(context)
.normal
: '$v',
style: ArDriveTypography.body
.buttonNormalBold(
color: colors
Expand Down Expand Up @@ -956,7 +959,11 @@ class _FullScreenVideoPlayerWidgetState
});
},
title: Text(
'$v',
v == 1.0
? appLocalizationsOf(
context)
.normal
: '$v',
style: ArDriveTypography
.body
.buttonNormalBold(
Expand Down

0 comments on commit 693ce98

Please sign in to comment.