![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-native-grid-list
Advanced tools
yarn add react-native-grid-list
or
npm install react-native-grid-list --save
import React, { PureComponent } from 'react';
import { View, StyleSheet, Image } from 'react-native';
import GridList from 'react-native-grid-list';
const items = [
{ thumbnail: { uri: 'https://lorempixel.com/200/200/animals' } },
{ thumbnail: { uri: 'https://lorempixel.com/200/200/city' } },
{ thumbnail: { uri: 'https://lorempixel.com/200/200/nature' } },
{ thumbnail: { uri: 'https://lorempixel.com/200/200/cats' } },
];
export default class App extends PureComponent {
renderItem = ({ item, index }) => (
<Image style={styles.image} source={item.thumbnail} />
);
render() {
return (
<View style={styles.container}>
<GridList
showSeparator
data={items}
numColumns={3}
renderItem={this.renderItem}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: 'white',
},
image: {
width: '100%',
height: '100%',
borderRadius: 10,
},
});
Check the code here
You can use all the props from FlatList: http://facebook.github.io/react-native/docs/flatlist.html
Prop | Default | Type | Description |
---|---|---|---|
children | - | node | Children elements |
data | not required if children is used | array | Data to use in renderItem |
renderItem | not required if children is used | func | Function that render each item of the grid |
numColumns | 3 | number | Number of elements in a row |
itemStyle | {} | ViewPropTypes | Style for the wrapper of item |
Separator | |||
showSeparator | false | bool | Show a separator between items |
separatorBorderWidth | 0 | number | Set separator width |
separatorBorderColor | 'white' | string | Set separator color |
Animation | |||
showAnimation | false | bool | Show an animation when load item |
animationInitialBackgroundColor | 'white' | string | Set initial backgroundColor for animation |
animationDuration | 500 | number | Duration of the animation |
Gustavo Gard
FAQs
React native grid list component
We found that react-native-grid-list demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.