react-native 第三方插件

1、react-navigation 导航组件 

参考链接:https://www.jianshu.com/p/2f575cc35780

https://blog.csdn.net/u013718120/article/details/72357698

2、native-base 自定义样式

参考链接:http://docs.nativebase.io/Components.html#Components

2.1 、 react-native-elements  一套UI样式

3、react-native-swiper 轮播图

参考链接:https://blog.csdn.net/u011272795/article/details/72669479

4、react-native-image-picker 上传图片

参考链接:http://www.hangge.com/blog/cache/detail_1617.html

5、react-native-wechat 分享到微信

参考链接:https://blog.csdn.net/sinat_17775997/article/details/71159389

6、react-native-qq 分享到qq

7、react-native-zss-rich-text-editor 富文本编辑器

参考链接:https://github.com/wix/react-native-zss-rich-text-editor

并且必须结合react-native-webview-bridge插件

8、react-native-keyboard-spacer (iOS下键盘遮挡问题)

9、react-native-view-shot (截屏)

10、react-native-swipe-list-view (侧滑删除)

11、react-native-root-toast(Toast弹出框)

12、react-native-modalbox (模态框)

13、react-native-permissions(权限管理工具)

14、react-native-aliyun-push 阿里云推送

15、react-native-code-push 热更新

16、react-native-storage 数据存储(本地缓存)可以用promise异步读取

17、react-native-qr-scanner 扫描二维码

18、react-native-modalbox 模态框

19、react-native-scrollable-tab-view Tab控制器

20、node-forge 可以用于加密密码的一个插件

 例:md5的用法

1)首先安装node-forge包   npm install node-forge

2)在需要使用的页面 引入包 let forge = require('node-forge');

在需要加密的地方,用以下代码,password就是md5加密后的

 let md = forge.md.md5.create();
 md.update('此处是需要加密的字符串');
 password = md.digest().toHex();

21、react-native-i18n 多语言库

未完待续。。。

猜你喜欢

转载自blog.csdn.net/Lee_taotao/article/details/80648387