我正在尝试使用vimeo构建一个显示视频列表的移动应用程序,我完成了托管视频并使用react native提取它们的所有操作,我遇到的一个问题是使用网络视图嵌入视频不是足够,如您在屏幕快照中所见,视频播放器控件非常小,有没有办法使它们变大。
这是我的代码
<WebView
javaScriptEnabled={true}
allowsFullscreenVideo={true}
source={{
html: `<div style='padding:56.25% 0 0 0;position:relative; height: 0;
overflow: hidden;
max-width: 100%; '>
<iframe src="https://player.vimeo.com/video${
currentVideo ? currentVideo : ""
}" style='position:absolute;top:0;left:0;width:100%;height:100%;' frameborder="0" allow="autoplay; fullscreen " allowfullscreen></iframe></div>`,
}}
/>
非常感谢您。