gpt4 book ai didi

react-native - 在对面 react native View

转载 作者:行者123 更新时间:2023-12-04 01:56:04 25 4
gpt4 key购买 nike

我想使用 React Native 在父 View 中将两个 View 放置在彼此相对的两侧。我发现这样做的唯一方法是使用间隔 View :

<View style={styles.parent}>
<Text style={styles.left}> Left </Text>
<View style={styles.spacer} />
<Text style={styles.right}> Right </Text>
</View>

有样式:

const styles = StyleSheet.create({
parent: {
flexDirection:'row',
},
spacer: {
flex: 1,
},
});

我可以向 leftright 添加样式来复制它,而不是使用间隔 View 吗?我发现使用 Prop marginRightright 并没有实现这一点。

最佳答案

为 justifyContent 使用空格

const styles = StyleSheet.create({
parent: {
flexDirection:'row',
justifyContent:'space-between'
},
});

关于react-native - 在对面 react native View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36261945/

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