Created
July 8, 2018 19:10
-
-
Save bogoslavskiy/7ab7d929b5932167a2f1451654078acb to your computer and use it in GitHub Desktop.
This file contains hidden or 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 from 'react'; | |
import { View, StyleSheet } from 'react-native'; | |
import { FlatList } from '../searchBarAnimation'; | |
export default class Tab extends React.PureComponent { | |
constructor(props) { | |
super(props); | |
this.state = { | |
dataSource: Array(20).fill().map((_, index) => ({id: index})) | |
}; | |
} | |
render() { | |
return ( | |
<FlatList | |
style={styles.wrapper} | |
data={this.state.dataSource} | |
renderItem={this._renderRow} | |
keyExtractor={(item) => item.id.toString()} | |
tabRoute={this.props.route.key} | |
renderItem={({item}) => ( | |
<View style={styles.item} /> | |
)} | |
/> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
wrapper: { | |
paddingLeft: 15, | |
paddingRight: 15, | |
paddingTop: 15 | |
}, | |
item: { | |
height: 150, | |
backgroundColor: '#fff', | |
marginBottom: 20, | |
shadowColor: 'rgb(75, 89, 101)', | |
shadowOffset: { width: 0, height: 2 }, | |
shadowOpacity: 0.1 | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment