react-native引用antd-mobile报错。低级配置问题没有解决
我是新手。刚刚接触react-native,在成功的跑出hello world之后。尝试引入antd-mobile,出现报错。我按照官网的配置,没有能够解决。麻烦大家帮忙看看!
.babelrc配置文件
{
"plugins": [["import", { "libraryName": "antd-mobile" }]],
"presets": ["react-native"]
}
index.js文件
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
View
} from 'react-native';
import { Button } from 'antd-mobile';
export default class smartphone extends Component {
render() {
return (
<View style={styles.container}>
<Button>Start</Button>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
AppRegistry.registerComponent('smartphone', () => smartphone);
报错如下:
,辛苦大家!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除node_modules,重新npm install
npm start -resert-cache
react-native run-iso