1.0.11 • Published 5 years ago

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

Weekly downloads
13
License
MIT
Repository
github
Last release
5 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

5 years ago

1.0.8

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago