From b69c40da33c584edbaff3f1112aad727a3631a77 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 27 Aug 2024 22:15:59 +0100 Subject: add indicator of time remaining (#5000) --- src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx') diff --git a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx index 09524b91c..7a4c6e914 100644 --- a/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx +++ b/src/view/com/util/post-embeds/VideoEmbedInner/VideoWebControls.tsx @@ -36,6 +36,7 @@ import {Play_Filled_Corner0_Rounded as PlayIcon} from '#/components/icons/Play' import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as UnmuteIcon} from '#/components/icons/Speaker' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' +import {TimeIndicator} from './TimeIndicator' export function Controls({ videoRef, @@ -252,6 +253,9 @@ export function Controls({ style={a.flex_1} onPress={onPressEmptySpace} /> + {active && !showControls && !focused && ( + + )}