如何在React Native中导入未在npm上发布的库

时间:2019-03-27 05:25:06

标签: typescript react-native import

我需要导入“ toystars / react-native-dynamic-forms”库。

我做了npm install git+https://github.com/toystars/react-native-dynamic-form.git

以及在我的app.js中

import DynamicForm from "react-native-dynamic-form"

但我遇到错误

  

“不变违规:不变违规:元素类型无效:   预期的字符串(用于内置组件)或类/函数(用于   复合组件),但得到:未定义。您可能忘记了出口   您的组件来自定义它的文件,或者您可能已经混合了   默认名称并命名导入。”

我正在这样使用它:

import DynamicForm from "react-native-dynamic-form" ;     
<DynamicForm
    ref={ref => this.formRef = ref}
    form={formeg}
    style={styles.formContainer}/>

0 个答案:

没有答案