gpt4 book ai didi

javascript - React Native 中的 Absolute 和 Flexbox

转载 作者:IT王子 更新时间:2023-10-29 02:50:07 26 4
gpt4 key购买 nike

我想在屏幕底部放置一个占据所有宽度的白色条。为此,我考虑使用 absolute 定位和继承的 flexbox 参数。

使用以下代码,它会呈现类似 this 的内容。

这是我的代码:

var NavigationBar = React.createClass({
render: function() {
return(
<View style={navigationBarStyles.navigationBar}>
//Icon 1, Icon 2...
</View>
);
}
});

var Main = React.createClass({
render: function() {
return(
<View style={mainStyles.container}>
<NavigationBar />
</View>
);
}
});

var mainStyles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#456783',
}
});

var navigationBarStyles = StyleSheet.create({
navigationBar: {
backgroundColor: '#FFFFFF',
height: 30,
position: 'absolute',
flexDirection: 'row',
bottom: 0,
justifyContent: 'space-between'
},
});

我是 CSS 样式的新手,并不是所有的属性都在 React-Native 中可用。所以感谢任何帮助,谢谢:)

最佳答案

好的,解决了我的问题,如果有人路过这里就是答案:

只需将 left: 0,top: 0, 添加到样式中,是的,我累了。

position: 'absolute',
left: 0,
top: 0,

关于javascript - React Native 中的 Absolute 和 Flexbox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29541971/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com