上一章React
Native实战教程请查看:React
Native设置元素样式
为了适应不同的屏幕尺寸,React
Native提供了Flexbox支持。
我们将使用与React
Native设置元素样式一章中相同的代码,我们只更改PresentationalComponent。
Flexbox布局为了实现理想的布局,flexbox提供了三个主要特性——flexDirection、justifyContent和alignItems。
下表显示了可能的选项。
属性 | 值 | 说明 |
flexDirection | ‘ column’ , ‘ row’ | 用于指定元素是垂直对齐还是水平对齐。 |
justifyContent | ‘ center’ , ‘ flex-start’ , ‘ flex-end’ , ‘ space-around’ , ‘ space-between’ | 用于确定元素在容器内的分布方式。 |
alignItems | ‘ center’ , ‘ flex-start’ , ‘ flex-end’ , ‘ stretched’ | 用于确定元素应如何沿着次轴(与弯曲方向相反)在容器内分布 |
App.js
import React, {Component} from 'react';
import {View, StyleSheet} from 'react-native';
const Home = props => {
return (
<
View style={styles.container}>
<
View style={styles.redbox} />
<
View style={styles.bluebox} />
<
View style={styles.blackbox} />
<
/View>
);
};
export default Home;
const styles = StyleSheet.create({
container: {
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'grey',
height: 600,
},
redbox: {
width: 100,
height: 100,
backgroundColor: 'red',
},
bluebox: {
width: 100,
height: 100,
backgroundColor: 'blue',
},
blackbox: {
width: 100,
height: 100,
backgroundColor: 'black',
},
});
文章图片
【React Native使用Flexbox布局 – React Native实战教程】如果需要将项移动到右侧,并且需要在它们之间添加空格,那么我们可以使用以下代码。
App.js
import React, {Component} from 'react';
import {View, StyleSheet} from 'react-native';
const App = props => {
return (
<
View style={styles.container}>
<
View style={styles.redbox} />
<
View style={styles.bluebox} />
<
View style={styles.blackbox} />
<
/View>
);
};
export default App;
const styles = StyleSheet.create({
container: {
flexDirection: 'column',
justifyContent: 'space-between',
alignItems: 'flex-end',
backgroundColor: 'grey',
height: 400,
},
redbox: {
width: 70,
height: 70,
backgroundColor: 'red',
},
bluebox: {
width: 70,
height: 70,
backgroundColor: 'blue',
},
blackbox: {
width: 70,
height: 70,
backgroundColor: 'black',
},
});
文章图片
推荐阅读
- Excel图文详细教程之导入手机联系人_Excel专区
- React Native设置元素样式 – React Native实战教程
- React Native prop介绍和用法 – React Native实战教程
- React Native状态state介绍和用法 – React Native实战教程
- 创建第一个React Native Android APP – React Native实战教程
- React Native基本概念和环境安装 – React Native实战教程
- Redux集成React – Redux教程
- Redux测试 – Redux教程
- Redux Devtool开发工具 – Redux教程