GithubHelp home page GithubHelp logo

netyouli / react-native-whc-grid Goto Github PK

View Code? Open in Web Editor NEW
12.0 4.0 3.0 1.06 MB

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

Home Page: https://github.com/netyouli/react-native-whcapp

License: MIT License

JavaScript 66.84% Python 7.59% Java 6.17% Objective-C 19.39%
react react-native grid react-native-whc-grid whc

react-native-whc-grid's Introduction

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

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

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

react-native-whc-grid's People

Contributors

netyouli avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.