无法将视频添加到 react-native 应用程序
2018-05-22
183
向我的应用添加视频时遇到问题,我已安装
react-native-video
并通过项目文件夹中的
react-native link
进行链接
import React, {Component} from 'react';
import {View, Text, StyleSheet} from 'react-native';
import {Video} from 'react-native-video';
import LightVideo from "./big_buck_bunny.mp4"
export default class App extends Component {
render() {
return (
<View >
<Text > React Native Video </Text>
<Video
source={LightVideo}
resizeMode="cover"
style={StyleSheet.absoluteFill}
/>
</View>
);
}
}
错误消息图像 --> 错误消息的屏幕截图
1个回答
您不是进行默认导入,而是进行命名导入。
使用
import Video from 'react-native-video';
而不是
import {Video} from 'react-native-video';
akshay gore
2018-05-22