search
HomeWeb Front-endHTML TutorialReact Native 之 flexbox 布局详解篇 (清晰明了)_html/css_WEB-ITnose

回复『 1024 』你懂的!

阅读本文大约需要5分钟

本文详情

本文讲解React Native中的布局,该布局用CSS的flex布局,掌握了这个布局对后面RN应用的开发用途非常之大。本文由 showCar 投稿(点击 阅读原文 )。文章地址: http://blog.csdn.net/u014486880

1.常用属性

RN的flexbox主要有以下几个属性alignItems,alignSelf,flex,flexDirection,flexWrap,justifyContent。

2.flexDirection

该属性用于指定主轴的方向。即指定子view的布局方向。它有两个值可设置。

  • row:横向布局。

  • column:纵向布局。

这个属性很简单,先看row的代码段:

一个View里有四个小View,小View的底色是黑的,看下效果图:  可以看到,四个view横向的进行布局。那改成column呢,样式修改如下: 看下效果图: 

就是纵向布局。

3.alignItems

用于定义子组件在垂直方向上的对齐方式。有四个属性可设置:flex-start,flex-end,center,stretch。

  • flex-start:与父组件的顶部对齐。

  • flex-end:与父组件的底部对齐。

  • center:处于父容器的中间位置。

  • stretch:竖直上填充整个容器。

首先来看下flex-start,顺便改了下子组件的颜色,代码如下: 看下效果图: 

就是和父容器顶部对齐。

看下flex-end属性,代码就不贴出来了,只要改alignItems属性就好了。效果图如下:

可以看到,和底部对齐了。  再看下center,这个可以说是用的最多的属性,它会让子组件位于父容器的中间位置,看下效果图: 

stretch就是竖直填充,前提是子组件没有设置height属性。看下效果图: 

4.justifyContent

有竖直就水平。justifyContent和alignItems是相对的。它有五个属性可以设置,分别是flex-start,flex-end,center,space-between,space-around。 

  • flex-start:伸缩项目与父容器左端靠齐。

  • flex-end:与父容器右端靠齐。

  • center:水平居中。

  • space-between:第一个子组件位于父容器左端,最后一个子组件位于父容器最右端。然后平均分配在父容器水平方向上。

  • space-around:所有子组件平均分配在父容器的水平方向上,左右都有留空隙。

先看水平居中(center)的,先看下代码:

父容器设置了justifyContent:’center’属性,所以理论上子组件应该会水平剧中,来看下是否正确。如下: 

justifyContent:’flex-start’,水平居左: 

justifyContent:’flex-end’,水平居右: 

这些都挺简单的,来看下space-between和space-around的区别,先看下space-between的效果图: 

可以看到它左右都不留空隙。均匀分布。  再看下space-around的效果图:  它左右都留有空隙,是平均的位于整个界面的水平方向上。

5.alignSelf

该属性用来设置单独组件的竖直对齐方式,与alignItem有点像。有五个属性可以设置,auto,flex-start,flex-end,center,streth。 

  • auto:按照自身设置的宽高来显示,如果没设置,效果跟streth一样。

  • flex-start:与父容器顶部对齐。

  • flex-end:与父容器底部对齐。

  • center:位于垂直位置。

  • streth:垂直拉伸。

这个用法跟上面的很像,只是它用于单个组件,如本例子的子View中,看下代码: 以上几个子View设置了不同的样式 ,看下效果图:

看到了,flex-start就是顶部对齐,flex-end就是与底部对齐。第三个View是streth,垂直拉伸了。第四个View是auto,因为设置了高度,所以显示如图所示。没有显示center,但它的效果可想而知,就不再演示啦。

6.flex

flex指设置伸缩项目的伸缩样式,可以把它类比成android中的weight属性。  看一个代码就清楚它的用法了。 效果图如下: 

可以看到,flex为2的组件宽度为flex为1宽度的两倍,flex为4组件宽度则为flex为1的组件宽度的4倍。

7.flexWrap

其实这些属性都是CSS原有的属性,只是RN只支持了部分的属性。flexWrap用于设置是否可换行,有两个属性可设置nowrap和wrap。

  • nowrap:即使空间不够也不换行。

  • wrap:空间不够的话自动换行。

如设置成wrap时,空间不够效果图如下:

第四个放不下,就换行了。 

8.再说两句

本文对于flex布局做了详细说明,而且应该算是图文搭配,解释的非常清晰明了,感谢投稿者~

本公众号欢迎大家投稿,如果你希望你的文章可以被更多人看到,直接将md、doc等格式的文章到我邮箱即可( 781931404@qq.com ),也可以加我QQ/微信( 781931404 )好友,需要注明(投稿),谢谢。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor