Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Keep screen awake when videos are playing (#10155)

authored by

Samuel Newman and committed by
GitHub
69164c64 f30acadc

+2
+2
src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx
··· 13 13 import {Pause_Filled_Corner0_Rounded as PauseIcon} from '#/components/icons/Pause' 14 14 import {Play_Filled_Corner0_Rounded as PlayIcon} from '#/components/icons/Play' 15 15 import {SpeakerVolumeFull_Stroke2_Corner0_Rounded as UnmuteIcon} from '#/components/icons/Speaker' 16 + import {KeepAwake} from '#/components/KeepAwake' 16 17 import {MediaInsetBorder} from '#/components/MediaInsetBorder' 17 18 import {useVideoMuteState} from '#/components/Post/Embed/VideoEmbed/VideoVolumeContext' 18 19 import {GifPresentationControls} from '../GifPresentationControls' ··· 112 113 /> 113 114 )} 114 115 <MediaInsetBorder /> 116 + <KeepAwake enabled={isPlaying} /> 115 117 </View> 116 118 ) 117 119 }