React Native SearchBar
Search Bar for iOS & Android with voice and history features for React Native.
Install
Before install this, take a look on this library:
Installation
npm i -S @zettabrasil/react-native-searchbar
Link the iOS package
npx pod-install
Usage
Checkout the example
This library depends on react-native-root-siblings to work properly. So, it is necessary to make the following configuration in the root app component:
import { SearchBarWrapper } from '@zettabrasil/react-native-searchbar';
export default function App() {
return (
<SearchBarWrapper>
<View>
{ /* app content */ }
</View>
</SearchBarWrapper>
);
}