如何让父级的宽度在 React Native 中包裹其内容?
IT技术
reactjs
react-native
2021-05-11 22:21:45
1个回答
您将能够使用flex
. 我发现本指南在使用 flex 时非常有用。
一个好的起点是创建一个父视图 flexDirection: row, justifyContent: flex-start
render () (
<View style={{justifyContent: 'flex-start', flexDirection: 'row'}}>
<View style={{backgroundColor: '#333333'}}>
<Image source={btnImageSource} />
<Text>Some label</Text>
</View>
</View>
);