我已经安装了 react-native-video 和 react-native-video-player 库。但是当我导入 react-native-video-player 时,我收到了这个错误:
import NewTodoButton from "./NewTodoButton";
import Nav from "./Nav";
const AllItemTodo = ({ currentList, setCurrentList }) => {
return (
<div className="all-item-todo">
<h2>{currentList}</h2>
<Nav />
<NewTodoButton />
</div>
);
};
export default AllItemTodo;
并且使用 react-native-video,但视频没有显示也收到此错误 {"error": {"extra": -2147483648, "what": 1}}。
请帮我解决这个问题。