
reactc-native
文章平均质量分 55
tianxia1202
这个作者很懒,什么都没留下…
展开
-
react-native 宽度和高度
指定宽度和高度react-native中的尺寸都是无单位的,表示的是与设备像素密度无关的逻辑像素点。/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, {Component} from 'react';import { AppRegistry,...原创 2018-02-20 19:14:31 · 3562 阅读 · 0 评论 -
react-native样式
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, {Component} from 'react';import { AppRegistry,Text,View,StyleSheet,} from 'react-native';expor...原创 2018-02-20 18:39:12 · 312 阅读 · 0 评论 -
react-native props
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, {Component} from 'react';import { AppRegistry,Image} from 'react-native';export default class ...原创 2018-02-20 00:52:49 · 362 阅读 · 0 评论 -
react-native Props
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, {Component} from 'react';import { AppRegistry,Text,View } from 'react-native';class Bananas ex...原创 2018-02-20 01:03:20 · 260 阅读 · 0 评论 -
react-native state
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, {Component} from 'react';import { AppRegistry,Text,View } from 'react-native';class Blink exte...原创 2018-02-20 01:31:45 · 287 阅读 · 0 评论 -
react-native Hello World
react-native和react用法很相似,如果你用过react,那么学react-native相对容易多了。如果没有学过,也没有关系。下面是一个react-native的Hello,World!小例子/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import R...原创 2018-02-19 23:09:08 · 159 阅读 · 0 评论 -
react-native 使用Flexbox布局
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */import React, {Component} from 'react';import { AppRegistry,Text,View,StyleSheet,} from 'react-native';expor...原创 2018-02-20 20:34:39 · 208 阅读 · 0 评论