
React-Native
文章平均质量分 64
Frank_Summer
快乐的程序猿,享受代码,带她如初恋~!~!!!!!!~~~~
展开
-
React-Native 学习(二)
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, { Component } from 'react';import { AppRegistry, StyleSheet, Text, View, Image,} from 'r原创 2016-11-11 16:38:21 · 404 阅读 · 0 评论 -
React-Native UI学习之轮播图(三)
1.UI布局的学习,学习使用引用第三方轮播图的插件; 2.在项目目录中新建一个pages文件夹,在pages下新建Index.js的文件; 3.在终端cd到工程目录下,安装使用的第三方插件 Swiper;$ npm install react-native-swiper --save$ npm i react-timer-mixin --save4.安装成功后,在Index.js文件下写代原创 2016-11-12 15:40:09 · 1560 阅读 · 0 评论 -
React-Native ActivityIndicator-指示器
ActivityIndicator指示器系统的指示器ActivityIndicator在Native中的使用方法.默认的有四个属性: size, color, animating,hidesWhenStopped; /** * size: 是个枚举值: large , small 默认是small * 在安卓里面的话可以设置大小类型为number原创 2016-11-12 19:55:52 · 3867 阅读 · 0 评论 -
React-Native TabBarIOS的学习
1.项目目录结构: 2.代码实现: (1) index.ios.js/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, { Component } from 'react';import FirstVC from './FirstVC.js'原创 2016-11-17 12:16:12 · 970 阅读 · 0 评论 -
React-Native 学习(一)
import React, { Component } from 'react';import { AppRegistry, StyleSheet, Text, View, Image,} from 'react-native';export default class Helloworld extends Component { render() { retur原创 2016-11-10 20:52:45 · 334 阅读 · 0 评论 -
React-Native 'RCTRootView.h' file not found AppDelegate.m
1.有时在打开React-Native的项目时,会报错:’RCTRootView.h’ file not found AppDelegate.m 文件找不到;2.cd 到我们该项目的根目录下;//执行$npm install3.执行完后,编译项目,看到还会提示错误: 在RCTSRWebSocket.m报错Ignoring return value of function declared with原创 2016-11-14 20:46:38 · 6291 阅读 · 0 评论