Ami*_*avi 6 react-native react-native-scrollview react-native-flatlist react-native-stylesheet
在这个小吃中,我尝试在屏幕中央放置 3 张卡片,并使用水平 FlatList 并启用分页以跳转到滚动时的下 3 张卡片。
\n但是布局在滚动后开始被破坏,并且下一张/上一张卡片的一些像素出现在视图中。
\n我应该如何设置此列表的样式,使其始终在屏幕中央恰好有 3 张卡片,并且滚动将跳转到包含接下来 3 张卡片的下一页?或者像 GooglePlay 商店一样,上一张/下一张卡片的固定像素在主 3 张卡片的左侧和右侧可见。(下面的示例截图)
\n <View style={{flex:1,justifyContent: \'center\', marginLeft: 5, marginRight: 5,}}>\n <FlatList\n horizontal\n pagingEnabled\n data={data}\n keyExtractor={(item) => `\xc3\xactem-${item}`}\n renderItem={({ item }) => (\n <Card style={{width:Dimensions.get("window").width/3-5,marginRight:5}}>\n {/* some content */}\n </Card>\n )}\n />\n </View>\nRun Code Online (Sandbox Code Playgroud)\n我不需要像snap-carousel这样的图书馆......
Ahm*_*ber 10
就像谷歌播放的例子(一一)尝试零食。

你的例子(三乘三)尝试零食。

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`?
Run Code Online (Sandbox Code Playgroud)
这是完整的例子
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',
},
});
Run Code Online (Sandbox Code Playgroud)
一一尝试零食
1-)评论useEffect。
2-) 设置const startScroll = (itemWidth * 3/4)
三乘三尝试零食
1-) 评论 useEffect。
2-) 设置const startScroll = (itemWidth * 2.75)
| 归档时间: |
|
| 查看次数: |
8728 次 |
| 最近记录: |