A expandable component for React Native
react-native-expand
A expandable component for React Native
Getting started
npm install react-native-expand --save
Example usage
class App extends React.Component {
constructor(props) {
super(props);
this.ds = [BandageIcon,CallIcon,DislikeIcon,
FistIcon, FlowersIcon, HeartIcon, LikeIcon,
LikingIcon, PartyIcon, PokeIcon, SuperLikeIcon, VictoryIcon];
}
renderRowData(rowData, index) {
return (
<View key={index} style={styles.row}>
<Image style={styles.thumb} source={rowData}/>
<Text style={styles.text}>Row{index + 1} {LOREM_IPSUM}</Text>
</View>
);
}
render() {
return (
<ExpandablePanel
contentPanelStyle={styles.container}
dataSource={this.ds}
renderRow={this.renderRowData}
/>
)
}
}