react-native-awesome-select

1.0.92 • Public • Published

React-native-awesome-select

A multiselect component with zero dependencies.

demo

Install

npm install react-native-awesome-select

Usage

import React from "react";
import { View } from "react-native";
import AwesomeSelect from "react-native-awesome-select";
 
const data = [
  {
    name: "First item",
    isActive: false
  },
  {
    name: "Second item",
    isActive: false
  }
];
 
export default function App() {
  return (
    <View>
      <AwesomeSelect
        data={ data }
        onValueChange={ value => console.log(value) }
      />
    </View>
  );
}

Props

Prop Type Description
data array Data array that will be passed and displayed
onValueChange function Callback called when value has been changed
activeStyle style The style applied to the elements with active state
inactiveStyle style The style applied to the elements with inactive state

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i react-native-awesome-select

      Weekly Downloads

      0

      Version

      1.0.92

      License

      ISC

      Unpacked Size

      9.18 kB

      Total Files

      4

      Last publish

      Collaborators

      • mustafa-turk