http://blog.csdn.net/jj120522/article/details/51900016  -----RN常见的错误

http://www.mamicode.com/info-detail-1195217.html---------ListView加载图片淡入淡出的效果

https://developer.mozilla.org/en-US/docs/Web/API/Request ------网络请求

http://www.tuicool.com/articles/AzQzEbq-------组件传值

http://blog.csdn.net/woshizisezise/article/details/51072351 ---scrollview动态加载

http://blog.csdn.net/wxs0124/article/details/50625176  -----TextInput 组件

http://bbs.reactnative.cn/topic/20/%E6%96%B0%E6%89%8B%E7%90%86%E8%A7%A3navigator%E7%9A%84%E6%95%99%E7%A8%8B

http://blog.csdn.net/Hello_Hwc/article/details/51444540

---------navigator的理解应用

http://blog.csdn.net/sunzhenglin2016/article/details/52780361  ----RN入门

http://www.cnblogs.com/thbbsky/p/5772460.html  --RefreshControl的运用

https://github.com/gagakj/GaGaMall  ---商城Demo

http://blog.csdn.net/u012915455/article/details/52594091  -----RN实现登录功能

http://blog.csdn.net/huaheshangxo/article/details/50960834   ------ListView

https://github.com/oblador/react-native-animatable

https://github.com/remobile/react-native-marquee-label

https://github.com/lan-xue-xing/thinking-react-native#%E4%B9%9D%E4%B8%AA%E7%94%9F%E5%91%BD%E5%91%A8%E6%9C%9F%E4%B8%80%E4%B8%AA%E7%BB%84%E4%BB%B6%E6%B8%B2%E6%9F%93%E5%8F%8A%E5%85%B6%E8%AE%B2%E8%A7%A3

https://github.com/fangwei716/30-days-of-react-native

http://www.jianshu.com/p/91fa0f34895e

http://www.lcode.org/react-native-api%E6%A8%A1%E5%9D%97%E4%B9%8Balert%E5%BC%B9%E5%87%BA%E6%A1%86%E8%AF%A6%E8%A7%A3%E5%8F%8A%E4%BD%BF%E7%94%A825/

http://www.phperz.com/article/15/1001/160686.html

http://www.tuicool.com/articles/M7NRr27

https://github.com/lidong1665/health

http://www.cnblogs.com/allenxieyusheng/p/5775322.html

http://www.cnblogs.com/ZSG-DoBestMe/p/5307421.html

http://bbs.reactnative.cn/user/sunnylqm

http://www.tuicool.com/articles/mQ7NZb7

https://developer.android.com/reference/android/support/v7/widget/Toolbar.html

整理react native的资料的更多相关文章

  1. React Native 学习资料

    React Native 学习资料 学习资料 网址 React Native中文网 https://reactnative.cn/

  2. react native 学习资料整理

    入门教程 深入浅出 React Native:使用 JavaScript 构建原生应用 http://www.appcoda.com/react-native-introduction/  中文版 h ...

  3. react native学习资料

    一:基础学习: react-native中文文档(react native中文网,人工翻译,官网完全同步)http://react-native.cn/docs/getting-started.htm ...

  4. react native 学习资料汇总

    http://www.ejiakt.com/album/show/252 http://www.cocoachina.com/ios/20150408/11513.html http://www.os ...

  5. React Native资料汇总

    React Native 官方文档中文版翻译 http://wiki.jikexueyuan.com/project/react-native/homepage.html REACT NATIVE开发 ...

  6. React Native笔记整理

    判断一个APP页面时原生还是H5:http://www.cnblogs.com/sonice-cinsy/p/5671324.html 写给移动开发者的React Native指南:http://bl ...

  7. 【腾讯Bugly干货分享】React Native项目实战总结

    本文来自于腾讯bugly开发者社区,非经作者同意,请勿转载,原文地址:http://dev.qq.com/topic/577e16a7640ad7b4682c64a7 “8小时内拼工作,8小时外拼成长 ...

  8. React Native环境配置和简单使用

    # 前言 学习本系列内容需要具备一定 HTML 开发基础,没有基础的朋友可以先转至 HTML快速入门(一) 学习 本人接触 React Native 时间并不是特别长,所以对其中的内容和性质了解可能会 ...

  9. 谈谈React Native环境安装中我遇到的坑

    谈谈React Native环境安装 这个坑把我困了好久,真的是接近崩溃的边缘...整理出来分享给大家,希望遇到跟我一样问题的小伙伴能尽快找到答案. 首先,这是在初始化App之后,react-nati ...

随机推荐

  1. 使用spring的AOP时产生的异常

    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userService' ...

  2. 用while语句求1~100之和

    用while语句求1~100之和 public class Ex3_5 {    public static void main(String[] args){        int n=1,sum= ...

  3. vmware 下centos7配置网络

    步骤一: 虚拟机中的网络设置配置为桥接模式: 步骤二: 注:本人配置的为非静态IP,ip为自动获取 vi /etc/sysconfig/network-scripts/ifcfg-eth0 配置内容如 ...

  4. 远程CDN加速不可用,加载本地库

    <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery ...

  5. 【笔记】MySQL查询排名

    select a.name, a.total_score,@rank:=@rank+1 as rank from (                  select u.name,uti.total_ ...

  6. mysql 有报错  ERROR! MySQL is not running, but lock file (/var/lock/subsys/mysql) exists

    sh-4.1# /etc/init.d/mysqld status ERROR! MySQL is not running, but lock file (/var/lock/subsys/mysql ...

  7. js中== 和===中的区别

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...

  8. 卸载oracle 11g grid软件

    一,使用deinstall 同样,卸载grid软件在11g中也推出了了卸载工具deinstall卸载同卸载oracle数据库软件 具体可参考:Behaviour of the Oracle De-in ...

  9. 移动端webapp自适应实践(css雪碧图制作小工具实践)图文并茂

    为什么要写这个 以前写过关于webapp自适应屏幕的文章(链接),不过写的大多数群众看不懂,所以来个图文并茂的版本.虽然只是一个简单的页面,不过在做的过程中也遇到了一些问题,也算是好事吧! 该示例gi ...

  10. Kinect开发随笔①——红外扫描仪(Kinect 数据源)

    来源于 MVA 的 快速入门:Kinect for Windows v2 开发 的学习随笔 具体内容为上图所示章节内容 章节内全部代码:GitHub地址点我(链接失效,待补档) <Page &l ...