Reactnative Learning Note 1 Flexbox layout

Source: Internet
Author: User

One, proportional attribute flex and layout direction Properties Flexdirection

For example, the Flex property values for three views are 2, 4, 8, respectively, and their height ratio is 2:4:8. , the width is not specified, and the default is full screen width.

class Zlfreactnativedemo extends Component {render () {return (      <view style={styles.container}> <view style={styles.style1}></view> <View style={styles .style2}></view> <view style={styles.style3}></view> </View>    ); }}const Styles=stylesheet.create ({container: {flex:1,
Flexdirection: column , BackgroundColor:' #00FFFF ',}, Style1: {flex:2, BackgroundColor:' Red ',}, Style2: {flex:4, BackgroundColor:' Blue ',}, Style3: {flex:8, BackgroundColor:' Green ', },});

If you want to change to landscape layout, you only need to change the parent view's property flexdirection to row

Two, the Alignment property alignSelf
alignSelf主要有flex-start(对于纵向布局来说是居上,对于横向布局是居左)、 flex-end(对于纵向布局来说是居下,对于横向布局是居右)、 center(居中)、  auto(自由)、 stretch(铺满)几种对齐方式。
Three justifyContent和alignItems
alignItemsis centered horizontally and justifyContent is vertically centered, unlike other properties, which are constrained by a child view.

 



Reactnative Learning Note 1 Flexbox layout

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.