Created
May 18, 2018 10:47
-
-
Save voratham/de4ef03472d9e1f03a7c26c7619d126f to your computer and use it in GitHub Desktop.
FlatList scrollToIndex practical example.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { Text, View, FlatList, Dimensions, Button, StyleSheet } from 'react-native'; | |
const { width } = Dimensions.get('window'); | |
const style = { | |
justifyContent: 'center', | |
alignItems: 'center', | |
width: width, | |
height: 50, | |
flex: 1, | |
borderWidth: 1, | |
}; | |
const COLORS = ['deepskyblue','fuchsia', 'lightblue ']; | |
function getData(number) { | |
let data = []; | |
for(var i=0; i<number; ++i) | |
{ | |
data.push("" + i); | |
} | |
return data; | |
} | |
class ScrollToExample extends Component { | |
getItemLayout = (data, index) => ( | |
{ length: 50, offset: 50 * index, index } | |
) | |
getColor(index) { | |
const mod = index%3; | |
return COLORS[mod]; | |
} | |
scrollToIndex = () => { | |
let randomIndex = Math.floor(Math.random(Date.now()) * this.props.data.length); | |
this.flatListRef.scrollToIndex({animated: true, index: randomIndex}); | |
} | |
scrollToItem = () => { | |
let randomIndex = Math.floor(Math.random(Date.now()) * this.props.data.length); | |
this.flatListRef.scrollToIndex({animated: true, index: "" + randomIndex}); | |
} | |
render() { | |
return ( | |
<View style={styles.container}> | |
<View style={styles.header}> | |
<Button | |
onPress={this.scrollToIndex} | |
title="Tap to scrollToIndex" | |
color="darkblue" | |
/> | |
<Button | |
onPress={this.scrollToItem} | |
title="Tap to scrollToItem" | |
color="purple" | |
/> | |
</View> | |
<FlatList | |
style={{ flex: 1 }} | |
ref={(ref) => { this.flatListRef = ref; }} | |
keyExtractor={item => item} | |
getItemLayout={this.getItemLayout} | |
initialScrollIndex={50} | |
initialNumToRender={2} | |
renderItem={({ item, index}) => ( | |
<View style={{...style, backgroundColor: this.getColor(index)}}> | |
<Text>{item}</Text> | |
</View> | |
)} | |
{...this.props} | |
/> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1 | |
}, | |
header: { | |
paddingTop: 20, | |
backgroundColor: 'darkturquoise', | |
alignItems: 'center', | |
justifyContent: 'center' | |
} | |
}); | |
export default class app extends Component { | |
render() { | |
return <ScrollToExample | |
data={getData(100)} | |
/> | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment