Skip to content

richecr/rn-multiple-select

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm npm

Library for creating a custom multiple option selector for React Native

Install

Step 1

$ npm install rn-multiple-select

or

$ yarn add rn-multiple-select

Step 2

Install react-native-vector-icons (for icons) package as a dependecy

$ npm install --save react-native-vector-icons

Step 3

$ react-native link react-native-vector-icons

Required Props

  • options | Array
  • onSelected | Function

Basic Example

import React, { useState } from "react";
import { StyleSheet, Text, View } from "react-native";

import SelectMultiple from "rn-multiple-select";

export default function App() {
  const [data, setData] = useState([
    {
      label: "White rice",
      value: "1",
    },
    {
      label: "Black bean",
      value: "2",
    },
    {
      label: "Sauteed rice",
      value: "3",
    },
    {
      label: "Baked beans",
      value: "4",
    },
    {
      label: "Spaghetti",
      value: "5",
    },
    {
      label: "Pasta in sauce",
      value: "6",
    },
  ]);

  function onSelectionsChange(data, item) {
    console.log(data, item);
  }

  return (
    <View style={styles.container}>
      <Text>Test rn-multiple-select</Text>
      <SelectMultiple
        options={data}
        onSelected={onSelectionsChange}
        messageMaxSelected="Máximo de itens selecionados!"
        maxSelected={2}
        styles={{
          containerStyle: {
            backgroundColor: "transparent",
            borderColor: "transparent",
          },
          checkedColor: "green",
        }}
        size={24}
      />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fff",
    alignItems: "center",
    justifyContent: "center",
  },
});

Example:

Imgur

Properties

Prop Default type Desciption
options null array of object The items
onSelected null funct Function to be called after an item is selected, passing the selected items and the new item that was clicked, either selecting or deselecting the item
styles {} object Stylization for checkboxes
iconType 'font-awesome' string Type of Icon
size 24 number Check box size
iconRight false boolean Icon to the right of the text
checkedIcon 'check-square-o' string ou React Native Component Default icon checked
uncheckedIcon 'square-o' string ou React Native Component Default icon unchecked
checkedTitle none string Specify a message for a marked checkbox
  • Prop of styles:
    • containerStyle: Checkbox main container style (background and etc).
    • textStyle: Style of text.
    • checkedColor: Default color for a selected item.
    • uncheckedColor: Default color for a unselected item.
    • fontFamily: The font-family of texts.