react-native-whc-grid
A react native module to show grid view, it works on iOS and Android.
Content
Installation
- 1.Run
npm install react-native-whc-grid --save
- 2.
import Grid from 'react-native-whc-grid'
Demo
Getting started
Add react-native-whc-grid
to your js file.
import Grid from 'react-native-whc-grid'
Inside your component's render method, use Grid:
{ return <View => ... <Grid = = = = /> </View> ; }
Basic usage
{ return <View => <Grid = = = = = = /> </View> ; }
Then you can use it like this:
1.grid item reload:
thisrefsgrid;
API
Props | Type | Optional | Default | Description |
---|---|---|---|---|
style | ViewPropTypes.style | true | {} | Custom default grid style |
column | PropTypes.number | true | 0 | Set grid column count |
renderItem | PropTypes.func | true | null | Render gird item |
rowSeparatorLineRender | PropTypes.func | true | null | Render grid row separator line |
columnSeparatorLineRender | PropTypes.func | true | null | Render grid column separator line |
Method | Type | Optional | Description |
---|---|---|---|
reloadData(datas) | function | true | reload grid item render |
Contribution
Issues are welcome. Please add a screenshot of bug and code snippet. Quickest way to solve issue is to reproduce it on one of the examples.
Pull requests are welcome. If you want to change API or making something big better to create issue and discuss it first.
MIT Licensed