1.0.0 • Published 2 years ago

react-native-counters-edit v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
2 years ago

Installation

To install a stable release use:

yarn

yarn add react-native-counters

npm

npm i react-native-counters --save

Example

Simple use only uses the Text plus minus component.

import Counter from "react-native-counters";

class Example Component {
  onChange(number, type) {
    console.log(number, type) // 1, + or -
  }
  
  render() {
    return (
      <Counter start={1} onChange={this.onChange.bind(this)} />
    )
  }
}

For all uses ALL_USES

If you want to customize (minusIcon, plusIcon) the buttons USE_CUSTOM_ICON

Props

Some default props and descriptions.

PropNameDescriptiontypeDefault
minusIf you are not using minusIcon, it shows directly.String-
plusIf you are not using plusIcon, it shows directly.String+
startThe starting numberNumber0
minMinus the minimum selected number.Number0
maxThe most selectable number.Number10
minusIconYou can use it to change the minusIcon.Functionnull
plusIconYou can use it to change the plusIcon.Functionnull
buttonStyleYou can change the types of all buttons.Object{}
buttonTextStyleMinus or plus styles in the buttonObject{}
countTextStylestyles of increasing number.Object{}

Contributing

This project exists thanks to all the people who contribute.