码迷,mamicode.com
首页 > 其他好文 > 详细

React Native 开发之 (08) FlexBox例子

时间:2016-09-20 00:04:57      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

1 example1

RectNative View demo 参考 http://reactnative.cn/docs/0.31/view.html#content

index.ios.js

import React, { Component } from react;
import {
  AppRegistry,//注册
  StyleSheet,//样式
  Text,     //文本组件
  View,      //视图组件
} from react-native;

class ADemo extends Component {
  //初始化方法-->返回具体的组件内容
  render() {
    return(
      <View style={styles.container}>
      <Text>你好 !!</Text>
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: center,
    alignItems: center,
    backgroundColor: red,
  },
  welcome: {
    fontSize: 20,
    textAlign: center,
    margin: 10,
  }
});

AppRegistry.registerComponent(ADemo, () => ADemo);

 

 

 

参考资料 http://reactnative.cn/

 

React Native 开发之 (08) FlexBox例子

标签:

原文地址:http://www.cnblogs.com/wangshuo1/p/5887061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!