记录一下自己暂目前了解和使用的一些开源库和官方文档和优秀博客介绍,希望对你有帮助☺️:

1.Toast:

https://github.com/magicismight/react-native-root-toast

2.图标的使用:

https://github.com/oblador/react-native-vector-icons

3.选择照片:

https://github.com/lwansbrough/react-native-camera

4.二级菜单:

https://github.com/vczero/react-native-tab-menu

5.日历组件:

https://github.com/vczero/react-native-calendar

6.轮播组件:

https://github.com/leecade/react-native-swiper

7.模态对话框:

https://github.com/devWayne/react-native-modal

8.Tab-navitor:

https://github.com/happypancake/react-native-tab-navigator

9.滑动切换:

https://github.com/skv-headless/react-native-scrollable-tab-view

参考博客:

http://www.jianshu.com/p/b7788c3d106e

10.侧滑:

https://github.com/root-two/react-native-drawer

11.导航栏:

https://github.com/react-community/react-navigation

官方文档: https://reactnavigation.org/docs/navigators/stack

参考博客:

http://blog.csdn.net/sinat_17775997/article/details/70176688

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

12.TabBar:

npm i react-native-tab-navigator --save

13.navigation:

https://github.com/wix/react-native-navigation

14.下拉刷新,上拉加载:react-native-pull

http://www.jianshu.com/p/017264724d49

15.iOS个推:

https://github.com/GetuiLaboratory/react-native-getui/blob/master/example/document/iOS.md

16.加载HTML文本信息展示成视图:

https://github.com/siuying/react-native-htmltext

https://www.oschina.net/p/react-native-htmlview

17.文件操作:

https://github.com/itinance/react-native-fs

18.数据存储:react-native-storage

https://github.com/sunnylqm/react-native-storage/blob/master/README-CHN.md

19.数据库:react-native-sqlite 不支持Android

https://github.com/almost/react-native-sqlite

20.动画:react-native-animatable

21.仿QQ微信列表左右滑动删除 react-native-swipe-list-view:

https://github.com/dancormier/react-native-swipeout

22.图片查看器:

https://github.com/halilb/react-native-photo-browser

23.react-native-simple-store:

使用AsyncStorage,但是发现构建相同的保存和获取功能变得很冗长乏味,太烦人,而这个 Simple Store是基于AsyncStorage 之上构建,能够简单直接访问设备.

24.react-native-timeago:时间处理

25.数据库操作: react-native-sqlite-storage

26.TextInput输入键盘适应:

react-native-keyboard-aware-scroll-view

27.启动屏:

https://github.com/crazycodeboy/react-native-splash-screen

28.城市列表选择:

http://blog.csdn.net/liu__520/article/details/53671912

29.相册图片选择,拍照,裁剪图片:

https://github.com/ivpusic/react-native-image-crop-picker

React Native常用的第三方开源库的更多相关文章

  1. iOS项目中常用的第三方开源库

    1.项目使用的第三方开源库 项目使用了CocoaPods(类似java中的maven)管理常用的第三方库,一些特殊的单独引用,下面介绍下比较好用的几个. (1)AFNetworking 目前比较推荐的 ...

  2. 开源框架】Android之史上最全最简单最有用的第三方开源库收集整理,有助于快速开发

    [原][开源框架]Android之史上最全最简单最有用的第三方开源库收集整理,有助于快速开发,欢迎各位... 时间 2015-01-05 10:08:18 我是程序猿,我为自己代言 原文  http: ...

  3. Android 第三方开源库收集整理(转)

    原文地址:http://blog.csdn.net/caoyouxing/article/details/42418591 Android开源库 自己一直很喜欢Android开发,就如博客签名一样,  ...

  4. 45.Android 第三方开源库收集整理(转)

    原文地址:http://blog.csdn.net/caoyouxing/article/details/42418591 Android开源库 自己一直很喜欢Android开发,就如博客签名一样,  ...

  5. 【开源框架】Android之史上最全最简单最有用的第三方开源库收集整理,有助于快速开发,欢迎各位网友补充完善

    链接地址:http://www.tuicool.com/articles/jyA3MrU 时间 2015-01-05 10:08:18  我是程序猿,我为自己代言 原文  http://blog.cs ...

  6. Autolayout 第三方开源库

    转载自:http://blog.csdn.net/hmt20130412/article/details/46638625 今天才发现CSDN支持markdown了…还是给出新博客地址:Autolay ...

  7. Android之史上最全最简单最有用的第三方开源库收集整理

    Android开源库 自己一直很喜欢Android开发,就如博客签名一样, 我是程序猿,我为自己代言 . 在摸索过程中,GitHub上搜集了很多很棒的Android第三方库,推荐给在苦苦寻找的开发者, ...

  8. 第三方开源库和jar包的区别

    jar包和第三方开源库的根本区别在于,开源库的功能比jar包功能更强大,通过引入库项目可以访问java文件以及该开源库项目下的资源文件,例如图片,layout等文件 jar包中只能放class文件 引 ...

  9. Android Studio 简介及导入 jar 包和第三方开源库方[转]

    原文:http://blog.sina.com.cn/s/blog_693301190102v6au.html Android Studio 简介 几天前的晚上突然又想使用 Android Studi ...

随机推荐

  1. Vasya and Beautiful Arrays CodeForces - 354C (数论,枚举)

    Vasya and Beautiful Arrays CodeForces - 354C Vasya's got a birthday coming up and his mom decided to ...

  2. shell脚本中case /*的作用

    如下语句 case $0 in /*) ;; *) ;; /*在这里的作用就是绝对路径的意思

  3. git 判断路径是否是 git 仓库

    git 判断路径是否是 git 仓库 import subprocess repo_dir = "../path/to/check/" command = ['git', 'rev ...

  4. wavefronts

    https://www.g-truc.net/post-0597.html https://michaldrobot.com/2014/04/01/gcn-execution-patterns-in- ...

  5. 开源笔记软件Joplin

    Joplin is a free, open source note taking and to-do application, which can handle a large number of ...

  6. Break 和 Continue 语句

    break 语句用于跳出循环. continue 用于跳过循环中的一个迭代. 1.break关键字可以用来退出switch或循环语句   不能在IF语句中使用break和continue 示例:在if ...

  7. IAT表和导入表

    1.关于IAT(import address table)表 当exe程序中调用dll中的函数时,反汇编可以看到,call后面并不是跟的实际函数的地址,而是给了一个地址:

  8. (十八)链接数据库,QSqlTableModel

    QMYSQL——mysql QSQLITE——sqlite QOICQ——orcale 所需头文件 .pro增加 sql #include <QSqlDatabase> #include ...

  9. vue-quill-editor的用法

    1. main.js引入vue-quill-editor import VueQuillEditor from 'vue-quill-editor' import 'quill/dist/quill. ...

  10. 清北学堂-贪心-bfs

    输入样例: 3 5 10 5 4 10 8 1 10 1 3 1 4 1 5 1 3 2 1 2 5 4 3 4 3 4 5 5 1 1 4 4 6 1 9 4 7 2 9 5 10 5 2 8 8 ...