Start video in full screen

Hi,

I have created this video chat app using ionic, I want to start the call with the video being fullscreen, I have tried setting width and height to 100% and also removing the padding and margin, but the video still doesn’t show in full screen.

I have also tried the requestFullScreen api, but it says that it can only be initiated by a user gesture.

tl;dr: Is there any way to start the video in full screen.

Thanks,

Akil.

Solved it by using the following css for the video element:
min-height:100%
min-width:100%
width:auto
height:auto.