A React Native Material Design SearchBar
Install the SearchBar from npm with npm i -S react-native-material-design-searchbar. Then, require it from your app's JavaScript files with import SearchBar from 'react-native-material-design-searchbar'.
This library depends on react-native-vector-icons. Please link it by following their installation guide.
All props are optional except height.
import React, { Component } from 'react';
import SearchBar from 'react-native-material-design-searchbar';
export default class ExampleComponent extends Component {
render() {
return (
<SearchBar
onSearchChange={() => console.log('On Focus')}
height={50}
onFocus={() => console.log('On Focus')}
onBlur={() => console.log('On Blur')}
placeholder={'Search...'}
autoCorrect={false}
padding={5}
returnKeyType={'search'}
/>
);
}
};onSearchChange: Callback on search changeiconCloseName: Optional string, use it to customize the close iconiconSearchName: Optional string, use it to customize the search iconiconBackName: Optional string, use it to customize the back iconiconColor: Optional string, use it to define a different padding size, default is#737373placeholder: Optional string, use it to customize the placeholder text, default iseSearch...placeholderColor: Optional string, use it to define a different placeholder color, default is#bdbdbdreturnKeyType: Optional string, use it to customize the return key typepadding: Optional string, use it to define a different padding size, default is5inputStyle: Optional string, use it to pass your style to theTextInputinputProps: Optional object, use it to pass additional props to theTextInput, for example{autoFocus: true}
The React packager will include the SearchBar component in your app's JS package and make it available for your app to use.
Contributions are welcome.
MIT

