需要未知模块" react-native-ios-charts"尝试在我的react-native应用程序中集成图表模块时

时间:2016-03-25 07:04:11

标签: ios react-native

我是反应原生的新手。 我通过cocoapods构建我的react-native应用程序,我完成了这项工作:npm install --save react-native-ios-charts或echarts-react或react-native-svg,它们显示同样的问题:需要未知模块那我怎么能通过我的代码要求模块。任何帮助将不胜感激。

代码在这里:

'use strict'

var React = require('react-native');
var {
  Component,
  StyleSheet,
  Text,
  View,
  ListView,
  Navigator,
  TouchableHighlight,
  Navbar,
} =React;
var chart = require('react-native-ios-charts');

class Chart extends Component {

render() {
  return (
     <Text>hi</Text >
);
}
  }

var styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'flex-start',
    backgroundColor: 'white',
    padding: 20,
    paddingTop: 30,
    paddingBottom: 30
  },
  navText: {
   fontSize: 16
  },
  right: {
    opacity: 0
  },
  list: {
    backgroundColor: 'white',
    padding: 0
  },
  listItem: {
    padding: 10,
    paddingLeft: 20,
    borderBottomWidth: 1,
    borderBottomColor: 'rgba(100, 100, 100, 0.2)'
  },
  description: {
    marginTop: 5,
    fontSize: 12,
    color: 'rgba(100, 100, 100, 0.7)'
  }
});

module.exports = Chart;

requiring unknown module

0 个答案:

没有答案