react-native 列式布局 行式布局

前端之家收集整理的这篇文章主要介绍了react-native 列式布局 行式布局前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/**
* Create by bamboo on 2018-04-13
* 页面布局
*/
import React,{ Component } from 'react';
import {
StyleSheet,
Text,212);"> View,212);"> } from 'react-native';


export default class App extends Component {
constructor( props) {
super( props);
this. state = {
};
}

render() {
return (
< View style= { styles. body } >
< Text >列式布局 </ Text >
< View style= { styles. row } >
< View style= { styles. r1 } ></ View >
< View style= { styles. r2 } ></ View >
</ View >

< Text >行式布局 </ Text >
< View style= { styles. column } >
< View style= { styles. c1 } ></ View >
< View style= { styles. c2 } ></ View >
</ View >
);
}
const styles = StyleSheet. create({
body:{
},212);"> row:{
flexDirection: 'row',212);"> height: 50,212);"> r1:{
flex: 1,212);"> backgroundColor: '#33ccff',212);"> r2:{
flex: 2,212);"> backgroundColor: '#FF34B3',212);"> column:{
flexDirection: 'column',

c1:{
c2:{
});

结果如下:

原文链接:https://www.f2er.com/react/301660.html

猜你在找的React相关文章