Skip to content
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

Add possibility to render an overlay component on video #131

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

mlazari
Copy link

@mlazari mlazari commented Dec 18, 2020

This change adds a new renderOverlayComponent prop that allows to render something on top of the video, but under controls / play button.

Example:

        <VideoPlayer
          video={{uri}}
          style={styles.video}
          videoWidth={320}
          videoHeight={240}
          renderOverlayComponent={() => (
            <Text
              style={{
                color: 'white',
                position: 'absolute',
                right: 20,
                bottom: 20,
              }}>
              Testing
            </Text>
          )}
        />

video-player

This change adds a new `renderOverlayComponent` prop that allows to render something on top of the video, but under controls / play button.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants