react-native使用蚂蚁金服的antd-mobile组件库教程
Posted 日常
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native使用蚂蚁金服的antd-mobile组件库教程相关的知识,希望对你有一定的参考价值。
国际惯例,先来展示下这个强大的组建库,常用的大部分组建都可以找到
https://mobile.ant.design 这是组件库网站 阿里旗下的
https://github.com/ant-design/ant-design-mobile 这是github网址,里面有源码,源码里面有使用案例,还有iOS和Android的apk安装包,扫一扫二维码就可以下载安装到手机。
安装步骤
1.
npm install react-dom --save
2.
npm install antd-mobile --save
3.
npm install babel-plugin-import --save-dev
4.在你的项目目录下找到。.babelrc 文件,把括号里面的内容( "plugins": [["import", { "libraryName": "antd-mobile" }]],)配置好
{
"plugins": [["import", { "libraryName": "antd-mobile" }]],
"presets": ["react-native"]
}
使用步骤
1.引入
import { Button } from ‘antd-mobile‘;
2.使用
render() {
return <Button>Start</Button>;
}
连环转:http://blog.csdn.net/sinat_17775997
以上是关于react-native使用蚂蚁金服的antd-mobile组件库教程的主要内容,如果未能解决你的问题,请参考以下文章