Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-autocomplete-input

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-autocomplete-input

Pure javascript autocomplete input for react-native

  • 3.0.0-rc.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11K
increased by27.28%
Maintainers
1
Weekly downloads
 
Created
Source

react-native-autocomplete-input

npm version Build Status

This is a pure javascript react-native component to display autocomplete suggestions given an array of objects respective to the input text.

Autocomplete Example

How to use react-native-autocomplete-input

Tested with RN >= 0.26.2. If you want to use RN < 0.26 try to install react-native-autocomplete-input <= 0.0.5.

First things first install the component from npmjs.org:

$ npm install --save react-native-autocomplete-input

or install HEAD from github.com:

$ npm install --save l-urence/react-native-autocomplete-input

Example

This brief example should illustrate the usage of the autocomplete:

// ...
render() {
  const { query } = this.state;
  const data = this._filterData(query)
  <Autocomplete
    data={data}
    defaultValue={query}
    onChangeText={text => this.setState({query: text})}
    renderItem={data => (
      <TouchableOpacity onPress={() =>
          this.setState({query: data})
        }
      >
        <Text>{data}</Text>
      </TouchableOpacity>
    )}
  />
}
// ...

The full example for Android and iOS from the screenshot can be found here.

Android

Android and iOS have different layout systems, because of that it is not possible to use overflows on Android (see #20). For that reason it is necessary to wrap the autocomplete into a separate component on Android and align it absolute to your content, to allow the suggestion list to overlap the other content.

//...

render() {
  return(
    <View>
      <View style={styles.autocompleteContainer}>
        <Autocomplete {/* your props */} />
      </View>
    <Text>Some content</Text>
    <View>
  );
}

//...

const styles = StyleSheet.create({
  autocompleteContainer: {
    flex: 1,
    left: 0,
    position: 'absolute',
    right: 0,
    top: 0,
    zIndex: 1
  }
});

react-native-autocomplete-input props

PropTypeDescription
containerStylestyleThese styles will be applied to the container which surrounds the autocomplete component.
inputContainerStylestyleThese styles will be applied to the container which surrounds the textInput component.
stylestyleThese styles will be applied to the textInput component.
dataarrayAssign an array of data objects which should be rendered in respect to the entered text.
listStylestyleThese style will be applied to the result list view.
renderItemfunctionrenderItem will be called to render the data objects which will be displayed in the result view below the text input.
renderSeparatorfunctionrenderSeparator will be called to render the list separators which will be displayed between the list elements in the result view below the text input.
onShowResultfunctiononShowResult will be called when the autocomplete suggestions appear or disappear.
renderTextInputfunctionrender custom TextInput. All props passed to this function.

Contribute

Feel free to open issues or do a PR!

Keywords

FAQs

Package last updated on 29 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc