3.0.1 • Published 1 year ago

react-native-lookup-modal v3.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
1 year ago

React Native Lookup Modal

React Native Lookup Modal

example gif

Install

yarn add react-native-lookup-modal

OR

npm install react-native-lookup-modal --save

Usage

import LookupModal from 'react-native-lookup-modal';

const users = [
  {
    id: 1,
    name: 'Brit Renfield',
    tel: '542-866-4301',
    email: 'brenfield0@gmail.com',
    country: 'Russia'
  },
  {
    id: 2,
    name: 'Alfonse Tesche',
    tel: '436-643-1234',
    email: 'atesche1@hotmail.com',
    country: 'Indonesia'
  },
  {
    id: 3,
    name: 'Chandler Follett',
    tel: '682-740-8794',
    email: 'cfollett2@boston.com',
    country: 'Greece'
  }
];

const [user, setUser] = useState();

<LookupModal
  data={users}
  value={user}
  onSelect={item => setUser(item)}
  displayKey={"name"}
/>

Props

PropDescriptionTypeRequired/Default
dataArray of ObjectsarrayDefault: []
valueSelected itemobjectOptional
onSelectFired when an result is selectedfunction(item) => {}
onCancelFired when modal is closed without selecting any resultfunction() => {}
displayKeyWhich property is shown in resultsstringDefault: title
selectTextText of select buttonstringDefault: Select...
placeholderPlaceholder of TextInputstringDefault: Search...
searchFuncCustom search functionfunctionDefault: defaultSearchFunc(text, data)
selectButtonStyleCustom select button styleobjectOptional
selectButtonTextStyleCustom select button text styleobjectOptional
hideSelectButtonHide select buttonboolDefault: false
childrenCustom select buttonelementOptional
contentStyleCustom modal content styleobjectOptional
itemStyleCustom item styleobjectOptional
itemTextStyleCustom item text styleobjectOptional
3.0.1

1 year ago

2.0.0

3 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago