摘要:/** * Created by apple on 2016/10/12. *//** Sample React Native App * https://github.com/facebook/react-native * @flow */"use strict"import React, {Component} from 'react'import { AppRegistry...
阅读全文
摘要:****************************** 知识点 ****************************** 1.读取本地json、json解析 ****************************** 效果图 ******************************
阅读全文
摘要:/** Sample React Native App * https://github.com/facebook/react-native * @flow */"use strict"import React, {Component} from 'react'import { AppRegistry, View, Text, Picker, StyleS...
阅读全文
摘要:/** Sample React Native App * https://github.com/facebook/react-native * @flow */"use strict"import React, {Component} from 'react'import { AppRegistry, View, Text, Picker, StyleS...
阅读全文
摘要:"use strict"import React, {Component} from 'react'import { AppRegistry, View, Text, DatePickerIOS, StyleSheet} from 'react-native' let minDate = new D
阅读全文
摘要:"use strict"import React, { Component } from 'react';import { AppRegistry, StyleSheet, View, Text, ActivityIndicator, TouchableOpacity} from 'react-native';class HelloWorld extends C...
阅读全文
摘要:"use strict"import React, { Component } from 'react';import { AppRegistry, // 注册组件,是应用的JS运行入口 StyleSheet, // 样式表, 类似于一个集合包含各个组件的属性 ListView, Dimensions, Text, TouchableOpacity, I...
阅读全文
摘要:2016-10-08 13:32:48.191 [info][tid:com.facebook.react.JavaScript] '1', 's1', '0' 2016-10-08 13:32:48.212 [info][tid:com.facebook.react.JavaScript] '2'
阅读全文
摘要:ListView: 1.一个展示垂直列表,类似于OC中TableView (后续研究 水平列表; 2.并不是立刻渲染所有元素(cell),而是优先渲染屏幕上可见的cell,类似tableview 中 cell的重用; 3.必须的两个属性:dataSource和renderRow,前者是列表数据源,后
阅读全文
摘要:"use strict"import React, { Component } from 'react';import { AppRegistry, // 注册组件,是应用的JS运行入口 StyleSheet, // 样式表, 类似于一个集合包含各个组件的属性 ScrollView, Dimensi
阅读全文
摘要:备注:博文只贴出关键代码,其中涉及到自定义控件、数据model可以忽略。博友使用过程中可以直接用button等替换掉报错的代码即可。 ************************************ h 文件 ************************************ #imp
阅读全文
摘要:"use strict"import React, { Component } from 'react';import { AppRegistry, // 注册组件,是应用的JS运行入口 StyleSheet, // 样式表, 类似于一个集合包含各个组件的属性 ScrollView, Dimensions, // 规格 TouchableWithoutFeedba...
阅读全文
摘要:RN中TextInput(输入框)使用总结,RN中文网上写的例子涉及到诸多小的知识点,在此做一一解析。
阅读全文