Library for creating a custom multiple option selector for React Native
$ npm install rn-multiple-select
or
$ yarn add rn-multiple-select
Install react-native-vector-icons (for icons) package as a dependecy
$ npm install --save react-native-vector-icons
$ react-native link react-native-vector-icons
options
| ArrayonSelected
| Function
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",
},
});
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.