'How I can fill the video component in container?

I am trying to style video so that It will fill the remaining space, but nothing is working so far, anyone has any idea what I can do here:


export const VIDEO_STYLES = {
    width: '100%',
    height: '100%',
    alignSelf: "stretch",
    objectFit: 'cover',
}


React.cloneElement(videoComponent, { style: VIDEO_STYLES }) 

IMAGE



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source