{"id":23894525,"url":"https://github.com/itsaladin/react-native-multiple-select-pro","last_synced_at":"2026-04-20T04:01:35.450Z","repository":{"id":206617726,"uuid":"716547294","full_name":"itsaladin/react-native-multiple-select-pro","owner":"itsaladin","description":"Select all options, single and multiple selectors. This package will provide an item search facility and delete selected items.","archived":false,"fork":false,"pushed_at":"2023-11-14T05:10:28.000Z","size":3926,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-03-14T17:34:21.042Z","etag":null,"topics":["react-native","react-native-multi-select-pro"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itsaladin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-09T11:14:41.000Z","updated_at":"2023-11-26T16:23:07.000Z","dependencies_parsed_at":"2023-11-11T05:30:12.561Z","dependency_job_id":"bd362116-4c5e-495e-af7f-e6f5bb9513a9","html_url":"https://github.com/itsaladin/react-native-multiple-select-pro","commit_stats":null,"previous_names":["itsaladin/react-native-multiple-select-pro"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-multiple-select-pro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-multiple-select-pro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-multiple-select-pro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsaladin%2Freact-native-multiple-select-pro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsaladin","download_url":"https://codeload.github.com/itsaladin/react-native-multiple-select-pro/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240278614,"owners_count":19776099,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react-native","react-native-multi-select-pro"],"created_at":"2025-01-04T14:59:30.820Z","updated_at":"2026-04-20T04:01:30.361Z","avatar_url":"https://github.com/itsaladin.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-multiple-select-pro\n\nSelect all options, single and multiple selectors. This package will provide you item search facility and delete selected facility.:v::sparkling_heart:\n\n| ![Screenshot a](gif/MultiSelector.gif) |\n| -------------------------------------- |\n\n## Installation\n\nUsing Yarn:\n\n```sh\nyarn add react-native-multiple-select-pro\n```\n\n```sh\nnpm install react-native-multiple-select-pro\n```\n\n## Usage\n\n```js\nimport * as React from 'react';\nimport { StyleSheet, View } from 'react-native';\nimport { MultiSelector } from 'react-native-multiple-select-pro';\n\nexport default function App() {\n  const [data, setData] = React.useState([]);\n\n  const DATASET = [\n    {\n      id: 1,\n      title: 'sunt aut facere ',\n    },\n    {\n      id: 2,\n      title: 'qui est esse',\n    },\n    {\n      id: 3,\n      title: 'ea molestias quasi',\n    },\n    {\n      id: 4,\n      title: 'eum et est occaecati',\n    },\n    {\n      id: 5,\n      title: 'nesciunt quas odio',\n    },\n    {\n      id: 6,\n      title: 'dolorem eum magni',\n    },\n    {\n      id: 7,\n      title: 'magnam facilis autem',\n    },\n    {\n      id: 8,\n      title: 'dolorem dolore est ipsam',\n    },\n    {\n      id: 9,\n      title: 'nesciunt iure omnis',\n    },\n    {\n      id: 10,\n      title: 'optio molestias',\n    },\n  ];\n\n  return (\n    \u003cView style={{ maxHeight: '50%' }}\u003e\n      \u003cMultiSelector\n        title=\"User Name\"\n        dataSet={DATASET}\n        containerHeight=\"75%\"\n        txtColor={'white'}\n        bgColor={'#00bbda'}\n        buttonTxtColor={'white'}\n        buttonBGColor={'#00bbda'}\n        checkboxColor={'white'}\n        buttonName=\"Done!\"\n        setData={setData}\n        hideButtonBGColor={'#00bbda'}\n        hideButtonTxtColor={'white'}\n        inputBoxHeight={35}\n      /\u003e\n      {/* you could get all selected data in data state */}\n      {console.log(data)}\n    \u003c/View\u003e\n  );\n}\n```\n\nIf your DATASET is too large you must wrap MultiSelector by View with maxHeight=\"50%\". You could manage total height with MaxHeight and containerHeight props.\n\n```js\n\u003cView style={{ maxHeight: '50%' }}\u003e\n  \u003cMultiSelector \u003e\n\u003c/View\u003e\n```\n\n## Properties\n\n| Prop                      | Type    | Description                                 | Default             |\n| ------------------------- | ------- | ------------------------------------------- | ------------------- |\n| \u003cb\u003edataSet\u003c/b\u003e            | Array[] | dataSet you must input array data .         | `required`          |\n| \u003cb\u003etitle\u003c/b\u003e              | String  | Label or title                              | `Search here`       |\n| \u003cb\u003edata\u003c/b\u003e               | Array   | you will get selected result in date prop   | `not-required`      |\n| \u003cb\u003esetData\u003c/b\u003e            | Array[] | Pass setState data in setData props         | `required callback` |\n| \u003cb\u003ebuttonName\u003c/b\u003e         | String  | Name of button                              | `Done`              |\n| \u003cb\u003echeckboxColor\u003c/b\u003e      | String  | Color of checkbox                           | `#00bbda`           |\n| \u003cb\u003etxtColor\u003c/b\u003e           | String  | color of text of body element               | `white`             |\n| \u003cb\u003ebuttonTxtColor\u003c/b\u003e     | String  | Text color of button                        | `white`             |\n| \u003cb\u003ebuttonBGColor\u003c/b\u003e      | String  | Background color of button                  | `#00bbda`           |\n| \u003cb\u003eheight\u003c/b\u003e             | String  | accepted percentage of table height         | `\"60%\"`             |\n| \u003cb\u003ebgColor\u003c/b\u003e            | String  | Background color of body element            | `#00bbda`           |\n| \u003cb\u003ehideButtonBGColor\u003c/b\u003e  | String  | Hide button background color                | `#00bbda`           |\n| \u003cb\u003ehideButtonTxtColor\u003c/b\u003e | String  | hide Button text Color                      | `#white`            |\n| \u003cb\u003einputBoxHeight\u003c/b\u003e     | number  | Height of InputBox                          | `35`                |\n| \u003cb\u003econtainerHeight\u003c/b\u003e    | string  | Height of container accepte only percentage | `60%`               |\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsaladin%2Freact-native-multiple-select-pro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitsaladin%2Freact-native-multiple-select-pro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsaladin%2Freact-native-multiple-select-pro/lists"}