gpt4 book ai didi

具有 3 张卡片分页布局的 React-Native FlatList

转载 作者:行者123 更新时间:2023-12-04 12:08:42 29 4
gpt4 key购买 nike

this snack我试图在屏幕中央放置 3 张卡片,并带有一个水平 FlatList 并启用分页以在滚动时跳转到接下来的 3 张卡片。
但是布局在滚动后开始被破坏,并且下一张/上一张卡片的一些像素出现在 View 中。
我应该如何设置此列表的样式,使其始终在屏幕中央正好有 3 张卡片,并且滚动将跳转到带有接下来 3 张卡片的下一页?或者像 GooglePlay 商店一样,在主要 3 张卡片的左侧和右侧可以看到上一张/下一张卡片的固定像素。 (以下示例截图)

 <View style={{flex:1,justifyContent: 'center', marginLeft: 5, marginRight: 5,}}>
<FlatList
horizontal
pagingEnabled
data={data}
keyExtractor={(item) => `ìtem-${item}`}
renderItem={({ item }) => (
<Card style={{width:Dimensions.get("window").width/3-5,marginRight:5}}>
{/* some content */}
</Card>
)}
/>
</View>
我不需要像 snap-carousel 这样的图书馆或者 ...
enter image description here

最佳答案

使用 Scrollview Prop snapToOffsets实现这一目标。
像google play的例子(一一)试试snack .
enter image description here
你的例子(三乘三)试试 snack .
enter image description here
如何使用 snapToOffsets?

const snapToOffsetsLikeGooglePlay = data.map((x, i) => {
return ((i * itemWidth) + startScroll)
})

const snapToOffsetsLikeYourExample = data.map((x, i) => {
return ((i * (itemWidth) * previewCount) + startScroll)
})

//see the example below to know
//what is `startScroll` and `previewCount` mean?
//and how to calculate `itemWidth`?
这里是完整的例子
import React from 'react';
import {FlatList, Text} from 'react-native';
import { View, StyleSheet, ScrollView, Dimensions } from 'react-native';

const { width } = Dimensions.get('window');
//you need to preview n items.
const previewCount = 3;
//to center items
//the screen will show `previewCount` + 1/4 firstItemWidth + 1/4 lastItemWidth
//so for example if previewCount = 3
//itemWidth will be =>>> itemWidth = screenWidth / (3 + 1/4 + 1/4)
const itemWidth = width/(previewCount + .5);
//to center items you start from 3/4 firstItemWidth
const startScroll = (itemWidth * 3/4);


const App = () => {

const data = [...Array(24).keys()];
const flatlistRef = React.useRef();


React.useEffect(() => {
if (flatlistRef.current) flatlistRef.current.scrollToOffset({
offset:startScroll, animated: false
});
}, [flatlistRef]);


const snapToOffsetsLikeGooglePlay = data.map((x, i) => {
return ((i * itemWidth) + startScroll)
})

const snapToOffsets = data.map((x, i) => {
return ((i * (itemWidth) * previewCount) + startScroll)
})


return (
<FlatList
ref={flatlistRef}
style={styles.container}
pagingEnabled={true}
horizontal= {true}
decelerationRate={0}
snapToOffsets={snapToOffsets}
snapToAlignment={"center"}
data={data}
renderItem={({item, index}) => (
<View style={styles.view} >
<Text style={styles.text}>{index}</Text>
</View>
)}/>
);

}



export default App;


const styles = StyleSheet.create({
container: {

},
view: {
marginTop: 100,
backgroundColor: '#eee',
width: itemWidth - 20, //20 is margin left and right
margin: 10,
height: 140,
borderRadius: 10,
justifyContent : 'center',
alignItems : 'center',
},
text : {
fontSize : 60,
fontWeight : 'bold',
color : '#aaa',
},

});

更新:从零开始作为@Amir-Mousavi 评论
一一尝试 snack
1-) 评论 useEffect。
2-) 套装 const startScroll = (itemWidth * 3/4) enter image description here
三三试 snack
1-) 评论 useEffect。
2-) 套装 const startScroll = (itemWidth * 2.75) enter image description here

关于具有 3 张卡片分页布局的 React-Native FlatList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69047058/

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