Socket
Socket
Sign inDemoInstall

react-native-multi-selectbox

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-multi-selectbox

React Native customized multi select for iOS/Android


Version published
Weekly downloads
720
increased by4.35%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-multi-selectbox

Renders the Picker/SelectBox/Dropdown with common styling for iOS/Android.

Getting started

How to install:

npm install react-native-multi-selectbox

or

yarn add react-native-multi-selectbox

How to use ?


import React from 'react'
import { SelectBox } from 'react-native-multi-selectbox '
import { xor } from 'lodash'

class Example extends React.Component {
  state = {
    selectedLocations: [],
    selectedValues: [],
    locations: [
      { item: 'Afghanistan', id: 'AF' },
      { item: 'land Islands', id: 'AX' },
      { item: 'Albania', id: 'AL' },
      { item: 'Algeria', id: 'DZ' },
      { item: 'American Samoa', id: 'AS' },
      { item: 'AndorrA', id: 'AD' },
      { item: 'Angola', id: 'AO' },
      { item: 'Anguilla', id: 'AI' },
      { item: 'Antarctica', id: 'AQ' },
      { item: 'Antigua and Barbuda', id: 'AG' },
      { item: 'Argentina', id: 'AR' },
      { item: 'Armenia', id: 'AM' },
      { item: 'Aruba', id: 'AW' }
    ]
  }

  render() {
    const { locations, selectedLocations, selectedValues } = this.state
    return (
      <React.Fragment>
        <SelectBox
          label="Select Location"
          options={locations}
          value={selectedLocations[0]}
          onChange={val => this.setState({ selectedLocations: [val] })}
          hideInputFilter={false}
          viewMargin="0 0 20px 0"
        />
        <SelectBox
          label="Select Groups"
          options={locations}
          selectedValues={selectedValues}
          onMultiSelect={item => this.setState({ selectedValues: xor(selectedValues, [item]) })}
          onTapClose={val => this.setState({ selectedValues: xor(selectedValues, [val]) })}
          viewMargin="0 0 20px 0"
          isMulti
        />
      </React.Fragment>
    )
  }
}

FAQs

Package last updated on 29 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc