React Native(四):布局(使用Flexbox)


欢迎一起来学习React Native,QQ群:672509442


简介

我们在React Native中使用flexbox规则来指定某个组件的子元素的布局。Flexbox可以在不同屏幕尺寸上提供一致的布局结构。相对于Native开发的布局更加快捷方便。

Flexbox使用flexDirection、alignItems和 justifyContent三个样式属性就已经能满足大多数布局需求

flexDirection

flexDirection可以决定zu jian组件布局的主轴,子元素会沿着主轴排列,或水平或垂直。

flexDirection的默认值是竖直轴(column)方向

column(默认)

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{flex: 1}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

column-reverse

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{flex: 1, flexDirection: 'column-reverse'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

row

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{flex: 1, flexDirection: 'row'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

row-reverse

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{flex: 1, flexDirection: 'row-reverse'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

justifyContent

在组件的style中指定justifyContent可以决定其子元素沿着主轴的排列方式。子元素是应该靠近主轴的起始端还是末尾段分布呢?亦或应该均匀分布?对应的这些可选项有:flex-start、center、flex-end、space-around以及space-between。

flex-start

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column',justifyContent: 'flex-start'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

center

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column',justifyContent: 'center'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

flex-end

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column',justifyContent: 'flex-end'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

space-around

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column',justifyContent: 'space-around'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

space-between

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column',justifyContent: 'space-between'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

alignItems

在组件的style中指定alignItems可以决定其子元素沿着次轴(与主轴垂直的轴,比如若主轴方向为row,则次轴方向为column)的排列方式。子元素是应该靠近次轴的起始端还是末尾段分布呢?亦或应该均匀分布?对应的这些可选项有:flex-start、center、flex-end以及stretch。

flex-start

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column', justifyContent: 'center', alignItems: 'flex-start'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

center

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column', justifyContent: 'center', alignItems: 'center'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

flex-end

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column', justifyContent: 'center', alignItems: 'flex-end'}}>
                <View style={{width: 50, height: 50, backgroundColor: 'red'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'green'}} />
                <View style={{width: 50, height: 50, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述

stretch

注意:

要使stretch选项生效的话,子元素在次轴方向上不能有固定的尺寸。以下面的代码为例:只有将子元素样式中的width: 50去掉之后,alignItems: ‘stretch’才能生效。

export default class AsomeProject extends Component {

    constructor(props) {
        super(props);
    }

    render() {
        return (
            <View style={{ flex: 1, flexDirection: 'column', justifyContent: 'center', alignItems: 'stretch'}}>
                <View style={{height: 50, backgroundColor: 'red'}} />
                <View style={{height: 150, backgroundColor: 'green'}} />
                <View style={{height: 100, backgroundColor: 'blue'}} />
            </View>
        );
    }
}

AppRegistry.registerComponent('AsomeProject', () => AsomeProject);

这里写图片描述


欢迎一起来学习React Native,QQ群:672509442

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值