-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[$250] Android – Sign in–Sound option is missing when Get started modal video opened to full screen #47295
Comments
Triggered auto assignment to @abekkala ( |
We think that this bug might be related to #vip-vsb |
@abekkala FYI I haven't added the External label as I wasn't 100% sure about this issue. Please take a look and add the label if you agree it's a bug and can be handled by external contributors |
@abekkala Whoops! This issue is 2 days overdue. Let's get this updated quick! |
@abekkala Still overdue 6 days?! Let's take care of this! |
Job added to Upwork: https://www.upwork.com/jobs/~01a9e36c7f9220ebf4 |
Triggered auto assignment to Contributor-plus team member for initial proposal review - @ikevin127 ( |
👓 Looking for proposals (if reproducible). |
ProposalPlease re-state the problem that we are trying to solve in this issue.Sound option is missing when Get started modal video opened to full screen What is the root cause of that problem?In full-screen mode, the video player is rendered at the system level, above any React Native components, so adding custom UI elements on top of the video can be challenging. What changes do you think we should make in order to solve the problem?To display custom UI components like a volume control in full-screen mode, we'll need to manage the full-screen mode manually rather than relying on presentFullscreenPlayer. This way, we maintain control over the video component and can overlay custom UI elements. Something like that: + <Modal visible={isFullscreen} supportedOrientations={['landscape', 'portrait']} onRequestClose={exitFullscreen}>
<Video
ref={videoPlayerRef}
style={[styles.w100, styles.h100, videoPlayerStyle]}
videoStyle={[styles.w100, styles.h100, videoStyle]}
source={{
// if video is loading and is offline, we want to change uri to "" to
// reset the video player after connection is back
uri: !isLoading || (isLoading && !isOffline) ? sourceURL : '',
}}
shouldPlay={shouldPlay}
useNativeControls={false}
resizeMode={resizeMode as ResizeMode}
isLooping={isLooping}
onReadyForDisplay={(e) => {
if (isCurrentlyURLSet && !isUploading) {
playVideo();
}
onVideoLoaded?.(e);
if (shouldUseNewRate) {
return;
}
videoPlayerRef.current?.setStatusAsync?.({rate: currentPlaybackSpeed});
}}
onPlaybackStatusUpdate={handlePlaybackStatusUpdate}
onFullscreenUpdate={handleFullscreenUpdate}
volume={volume.value ? volume.value : 0}
/>
+ </Modal> |
@abekkala, @ikevin127 Uh oh! This issue is overdue by 2 days. Don't forget to update your issues! |
@huult Thank you for the proposal. I wasn't able to test your solution as the implementation is not specific enough for me to get a working prototype in order to verify whether it works. If I just wrap the Can you please provide a working test branch in order for me to verify this ? Important I opened up a discussion on Slack about this issue and whether or not it's worth addressing this issue given that most devices have a volume / mute button. Will bump the discussion as I posted it over the weekend and it did not get any attention. Bumped on Slack here. |
@abekkala @ikevin127 this issue was created 2 weeks ago. Are we close to approving a proposal? If not, what's blocking us from getting this issue assigned? Don't hesitate to create a thread in #expensify-open-source to align faster in real time. Thanks! |
📣 It's been a week! Do we have any satisfactory proposals yet? Do we need to adjust the bounty for this issue? 💸 |
vsb is on hold. This is now 2 weeks old. |
If you haven’t already, check out our contributing guidelines for onboarding and email [email protected] to request to join our Slack channel!
Version Number: 9.0.19-4
Reproducible in staging?: Y
Reproducible in production?: Y
Issue was found when executing this PR #46795
Email or phone of affected tester (no customers): [email protected]
Issue reported by: Applause Internal Team
Action Performed:
Expected Result:
Sound option is present
Actual Result:
Sound option is missing
Workaround:
Unknown
Platforms:
Screenshots/Videos
Bug6570356_1723497177196.A_fix_update_volume_to_0.25_if_unmute_but_volume_is_0.mp4
View all open jobs on GitHub
Upwork Automation - Do Not Edit
Issue Owner
Current Issue Owner: @ikevin127The text was updated successfully, but these errors were encountered: