1.0.0 • Published 6 years ago

react-native-whc-grid v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

react-native-whc-grid

A react native module to show grid view, it works on iOS and Android.

release PRs Welcome NPM version License MIT 语言 中文

Content

Installation

  • 1.Run npm install react-native-whc-grid --save
  • 2.import Grid from 'react-native-whc-grid'

Demo

Screenshots

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:

 render() {
         return (
             <View style={styles.container}>
                 ...
                 <Grid
                    style = {styles.grid}
                    column = {4}
                    data = {this.girdItems}
                    renderItem = {(item, index) => (
                        <HomeGridItem
                            key = {index}
                            item = {item}
                            onPress={() => {}}
                        />
                    )}
                 />
             </View>
         );
 }

Basic usage

render() {
        return (
            <View style={styles.container}>
                <Grid
                   style = {styles.grid}
                   column = {4}
                   data = {this.girdItems}
                   rowSeparatorLineRender = {(index) => (<Line key = {index} />)}
                   columnSeparatorLineRender = {(index) => (
                        <Line key = {index} style = {styles.columnline}/>
                   )}
                   renderItem = {(item, index) => (
                       <HomeGridItem
                           key = {index}
                           item = {item}
                           onPress={() => {}}
                       />
                   )}
                />
            </View>
        );
    }

Then you can use it like this:

1.grid item reload:

 this.refs.grid.reloadData(datas);

API

PropsTypeOptionalDefaultDescription
styleViewPropTypes.styletrue{}Custom default grid style
columnPropTypes.numbertrue0Set grid column count
renderItemPropTypes.functruenullRender gird item
rowSeparatorLineRenderPropTypes.functruenullRender grid row separator line
columnSeparatorLineRenderPropTypes.functruenullRender grid column separator line
MethodTypeOptionalDescription
reloadData(datas)functiontruereload 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