1.0.11 • Published 4 years ago

@brasileiromaia/react-native-multiselect-dropdown v1.0.11

Weekly downloads
13
License
MIT
Repository
github
Last release
4 years ago

React Native Multiselect Dropdown

install

yarn add @brasileiromaia/react-native-multiselect-dropdown

Import

import Select from '@brasileiromaia/react-native-multiselect-dropdown';

Usage

// The component receive the state and function that define a new state.
const [uf, setUf] = useState([]);

// The array needs has one id and name.

// Example:
// uf: {
//   id: 1,
//   name: 'Nome'
// }


// Every properties listed down are required.
<Select
  data={uf}
  setData={setUf}
  label="UF"
  palceholder="Selecionar seu estado"
/>
1.0.9

4 years ago

1.0.8

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago