【发布时间】:2021-05-24 08:27:29
【问题描述】:
下面的代码即使在 flatList 中提及也不显示水平滚动 我也删除了不必要的导入
主屏幕:
const firstCategory = categories.items[0];
const HomeScreen = () => {
return (
<View style={styles.container}>
<FlatList
horizontal={true}
data={firstCategory.movies}
renderItem={({item}) => (
<Image style={styles.image} source={{ uri: item.poster }}/>
)}
/>
</View>
);
}
export default HomeScreen;
我无法整理,请帮忙! Screenshot
【问题讨论】:
-
你能把你添加到容器和图像的样式也附加上吗?
标签: react-native react-native-flatlist horizontal-scrolling