0.1.105 • Published 6 years ago

react-native-selectmultiple-button v0.1.105

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

React Native SelectMultiple Button

This library is a button (or a grouped buttons) supporting multiple or radio selection by building with React Native

You can specify any Layout and Style for container view,button view and text through View Style Props, Layout Props and Text Style Props supporting by React Native

Example running in iOS and Andorid(captured by GIPHY CAPTURE)

captured by GIPHY CAPTURE

Note:Runing a Android Virtual Device is TMDing too large memory eated.

Instruction

  • SelectMultipleButton

  • SelectMultipleGroupButton

SelectMultipleButton

You need to set the props selected as true to highlight button's selected status and manage the data selected through event props singleTap(valueTap) by hard coding yourself.

SelectMultipleGroupButton

You needn't to set these settings like SelectMultipleButton, because these features are build in the SelectMultipleGroupButton. What you do is set the event props singleTap(valueTap) to hold the value tap and the event props onSelectedValuesChange(selectedValues) to hold the array of values selected.

Installation

cd your project root direction

$ npm install react-native-selectmultiple-button --save

Usage

code example

App.js

code snap

import { SelectMultipleButton, SelectMultipleGroupButton } from 'react-native-selectmultiple-button'

<SelectMultipleButton

buttonViewStyle={{

borderRadius: 10,

height: 40

}}

textStyle={{

fontSize: 15,

}}

highLightStyle={{

borderColor: 'gray',

backgroundColor: 'transparent',

textColor: 'gray',

borderTintColor: ios_blue,

backgroundTintColor: ios_blue,

textTintColor: 'white',

}}

multiple={true}

value={interest}

selected={this.state.multipleSelectedData.includes(interest)}

singleTap={(valueTap) => this._singleTapMultipleSelectedButtons(interest)} />

<SelectMultipleGroupButton

containerViewStyle={{

justifyContent: 'flex-start'

}}

highLightStyle={{

borderColor: 'gray',

backgroundColor: 'transparent',

textColor: 'gray',

borderTintColor: ios_blue,

backgroundTintColor: 'transparent',

textTintColor: ios_blue,

}}

onSelectedValuesChange={(selectedValues) => this._groupButtonOnSelectedValuesChange(selectedValues)}

group={multipleGroupData} />

Props

SelectMultipleButton

propstyperequireddesc
selectedboolnoDefault is false. The selected prop determines whether the button is selected and highlighted
valueone of types(string,number)yesYour business key
displayValueone of types(string,number)noDefault is == value prop if not set displayValue prop. Displayed as button's text
singleTapfunction(valueTap)noHandler to be called when the user taps the button. The button's props value is passed as an argument to the callback hanlder

highLightStyle

Normal or highlighted style, the style object {} contains the following keys.

  • borderColor: PropTypes.string.isRequired---Normal color of button border.

  • backgroundColor: PropTypes.string.isRequired---Normal color of button backgroud.

  • textColor: PropTypes.string.isRequired---Normal color of text.

  • borderTintColor: PropTypes.string.isRequired---Highlighted color of button border.

  • backgroundTintColor: PropTypes.string.isRequired---Highlighted color of button background.

  • textTintColor: PropTypes.string.isRequired--Highlighted color of text.

Default style is

{

borderColor: 'gray',

backgroundColor: 'transparent',

textColor: 'gray',

borderTintColor: ios_blue,

backgroundTintColor: 'transparent',

textTintColor: ios_blue,

}


buttonViewStyle

Sytle of button view. You can specify any View Style Props.

Default style is

{

margin: 5,

borderRadius: 3,

alignItems: 'center',

justifyContent: 'center',

borderWidth: 1

}


textStyle

Style of text. You can specify any Text Style Props

Default style is

{

textAlign: 'center',

marginTop: 5,

marginBottom: 5,

marginLeft: 10,

marginRight: 10,

}

SelectMultipleGroupButton

propstyperequireddesc
multipleboolnoDefault is true. The multiple prop determines the grouped buttons are multiple or radio selected
defaultSelectedIndexesarraynoThe indexes array in group of the grouped buttons to be default selected and highlighted
maximumNumberSelectednumbernoSpecifies maximum number for selecting buttons, and its smallest value is 2. Only enabled for multiple prop is set true
grouparray of {value,displayValue}yesJust a plain array, value and displayValue props are akin to value and displayValue props of SelectMultipleButton.
singleTapfunction(valueTap)noHandler to be called when the user taps the button. The button's props value is passed as an argument to the callback hanlder.
onSelectedValuesChangefunction(selectedValues)noHandler to be called when the user taps the button.the array of selected values is passed as an argument to the callback hanlder.

highLightStyle

Normal or highlighted style, akin to highLightStyle of SelectMultipleButton.


buttonViewStyle

Sytle of button view, akin to buttonViewStyle of SelectMultipleButton.


textStyle

Sytle of text, akin to textStyle of SelectMultipleButton.


containerViewStyle

Sytle of the grouped buttons container view. You can specify any View Style Props and Layout Props.

Default View Style and Layout props is

{

flexWrap: 'wrap',

flexDirection: 'row',

justifyContent: 'center'

}

License

react-native-selectmultiple-button is MIT Licensed.

0.1.105

6 years ago

0.1.104

6 years ago

0.0.86

6 years ago

0.0.85

6 years ago

0.0.84

6 years ago

0.0.83

6 years ago

0.0.81

6 years ago

0.0.76

6 years ago

0.0.60

6 years ago

0.0.59

6 years ago

0.0.18

6 years ago

0.0.17

6 years ago

0.0.16

6 years ago

0.0.1

6 years ago