gpt4 book ai didi

react-native - flatlist 将来自 json api 的数据渲染为每行 3 个项目

转载 作者:行者123 更新时间:2023-12-04 04:58:28 27 4
gpt4 key购买 nike

大家好,我正在从 json api 获取数据,我正在使用 flatlist 来呈现项目。我正在使用 numColumns每行显示 3 个项目的属性
但让我们假设我有 7 或 8 个项目
我在渲染时遇到问题。我想显示的布局是这样的

X X X
X X X
X X

但我得到的是:
layout

这是我的代码:
    _renderItem = ({ item, index }) => (
<View style={categorystyles.Category} key={index}>
<TouchableOpacity activeOpacity={.5}
onPress={() => this.props.navigation.navigate('ListingPerCategory', { catid: item.id })}>
{item.category_app_icon ? <Image style={categorystyles.CategoryImg}
source={{ uri: `${item.category_app_icon}` }} /> :
<Image style={categorystyles.CategoryImg}
source={require('../assets/coffeecup.png')} />}
</TouchableOpacity>
<Text style={{ marginTop: 5 }}>{escape(item.name).replace('%20', ' ').replace('%26amp%3B%20', ' ')}</Text>
</View>
)
render(){
return(
<FlatList
horizontal={false}
data={this.state.categories}
keyExtractor={(item, index) => item.id}
numColumns={3}
renderItem={this._renderItem}
/>
)
}

const styles = StyleSheet.create({
Category: {
flex:1,
justifyContent: 'center',
alignItems:'center',
margin:5
},
CategoryImg: {
resizeMode: 'contain',
width: 50,
height: 50
}
})

最佳答案

由于您使用的是 flex: 1alignItems: center ,您的布局将如下所示 After Image

因此items在它里面将根据项目布局垂直和水平对齐。

相反,您需要检查 width并基于此添加布局。

在你的风格

Category: {
flex:1,
maxWidth: Dimensions.get('window').width / 3 - 10, // Width / 3 - (marginLeft and marginRight for the components)
justifyContent: 'center',
alignItems:'center',
margin:5
},

添加此样式后,布局将如下所示
After Image

关于react-native - flatlist 将来自 json api 的数据渲染为每行 3 个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51964588/

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