我正在尝试在我的React Native项目中使用margin style属性的百分比值,但它似乎降低了我的一个View组件的高度。如果我用绝对值替换百分比值,则没有更多问题,它可以正常工作。您是否尝试在React Native中使用百分比值作为保证金?以下是重现此问题的一些代码示例:
import React, { Component } from 'react';
import { Text, View, StyleSheet } from 'react-native';
export default class App extends Component {
render() {
return (
<View style={styles.scene}>
<View style={styles.card}>
<View style={styles.container}>
<Text>Hello World</Text>
</View>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
scene: {
backgroundColor: '#F9E8D5',
flex: 1,
justifyContent: 'flex-start',
alignItems: 'center',
flexDirection: 'column'
},
card: {
backgroundColor: '#E6D5C3',
flex: 0.2,
flexDirection: 'column',
marginTop: '20%' // Replace by 20
},
container: {
backgroundColor: '#FFFFFF',
flex: 1,
flexDirection: 'column',
justifyContent: 'center'
}
});
非常感谢!
答案 0 :(得分:6)
组件的高度和宽度决定了它在屏幕上的大小。
设置组件尺寸的最简单方法是为样式添加固定的宽度和高度。 React Native中的所有维度都是无单位的,并且表示与密度无关的像素。
以这种方式设置尺寸对于应始终以完全相同的尺寸呈现的组件是常见的,无论屏幕尺寸如何。
在组件的样式中使用flex,可以根据可用空间动态扩展和缩小组件。通常你会使用flex:1。
以下参考资料将用于样式
https://facebook.github.io/react-native/docs/height-and-width.html
https://medium.com/the-react-native-log/tips-for-styling-your-react-native-apps-3f61608655eb
https://facebook.github.io/react-native/docs/layout-props.html#paddingtop
使用尺寸进行计算以获得屏幕的高度和宽度。
var {height, width} = Dimensions.get('window');
通过获取屏幕尺寸并将其转换为百分比来指定百分比。
示例示例:
const { height } = Dimensions.get('window');
paddingTop: height * 0.1 // 10 percentage of the screen height
答案 1 :(得分:1)
这是一个真正的错误,但Facebook不在乎。