An open API service indexing awesome lists of open source software.

https://github.com/interfacekit/react-native-ios-search-bar

πŸ” iOS UISearchBar for React Native
https://github.com/interfacekit/react-native-ios-search-bar

ios react react-native uisearchbar

Last synced: 11 months ago
JSON representation

πŸ” iOS UISearchBar for React Native

Awesome Lists containing this project

README

          

# react-native-ios-search-bar




Native UISearchBar component for React Native.


Search bar

## Getting started

`$ yarn add react-native-ios-search-bar`

### Mostly automatic installation

`$ react-native link react-native-ios-search-bar`

### Manual installation

#### iOS

1. In XCode, in the project navigator, right click `Libraries` ➜ `Add Files to [your project's name]`
2. Go to `node_modules` ➜ `react-native-ios-search-bar` and add `RNIKReactNativeIosSearchBar.xcodeproj`
3. In XCode, in the project navigator, select your project. Add `libRNIKReactNativeIosSearchBar.a` to your project's `Build Phases` ➜ `Link Binary With Libraries`
4. Run your project (`Cmd+R`)<

## Usage
```javascript
import IOSSearchBarView from 'react-native-ios-search-bar';

class Search extends React.Component {
_onTextDidChange = (text: string) => {
console.log(text)
}

render() {
return (

)
}
}
```

## License

MIT

## Author

Álvaro Medina Ballester ``

Built with πŸ’› by [APSL](https://github.com/apsl).