Building an Animated Search Bar with React Native

In this post, we’ll learn to use basic React Native animations while creating a RN project that has an animated search bar. To do this, we’ll use the react-native-animatable package.

In most applications, animations are repetitive swipes, slides, bounces, and so on; react-native-animatable provides preconfigured animated components that you can use without rewriting commonly-used animations yourself. The package provides a standard set of easy-to-use animations and declarative transitions for React Native.

You can see a simulation of what we’re going to create below:

In the first step, we create a view for the search component. The code for the search view and the CSS styling are given below:

<View style={{ flex: 1,paddingTop:20  }}>
  <View
   style={{
   height: 80,
   backgroundColor: '#74C7ED',
   justifyContent: 'center',
   paddingHorizontal: 5,
  }}>
     <View style={{ height: 50, backgroundColor: 'white' }} />
  </View>
</View>

We use the above to create a view with a search bar component. You can use your own CSS styling to create different designs for your own search bar. As a result, you’ll get a search bar that looks like this:

Add Icons and Search placeholder

In this step, we’ll add the search icon to our search bar so that users will know the search bar’s function. Here, we also add a placeholder “Search” to our search bar text field.

You can use the following piece of code to add an icon and placeholder to your search bar. The code on line number 13–19 below is what we add to the previous view to get our result as follows:

<View style={{ flex: 1, paddingTop: 20 }}>
  <View
    style={{
      height: 80,
      backgroundColor: '#74C7ED',
      justifyContent: 'center',
      paddingHorizontal: 5,
   }}>
  <View
   style={{
     height: 50,
     backgroundColor: 'white',
     flexDirection: 'row',
     padding: 5,
     alignItems: 'center',
   }}>
   <Icon name="ios-search" style={{ fontSize: 25 }} />
   <TextInput placeholder="Search"  style={{ fontSize:25,paddingLeft:15 }} />
  </View>
 </View>
</View>

Hence, you can see the result with a magnify search icon and “Search” placeholder in our search bar below. These elements should make it clear to users what the purpose of this bar is.

Adding your first animation

Next, we’ll add our first animation to the search bar. For that, we need to install the react-native-animatable package into our React Native project. To do that we can simply use NPM or yarn.

In your project console:

or

Now, to use the above package, we need to import the react-native-animatable package to our project view.

We can do so by using the following piece of code:

import * as Animate from 'react-native-animatable'

To animate the search bar we must use the createAnimatableComponent composer similar to the Animated.createAnimatedComponent. The common components View, Text, and Image are pre-composed and exposed under the Animatable namespace.

import { Text, View, StyleSheet, TextInput, FlatList, Keyboard } from 'react-native';

After the import, we’ll need to update the search view with the Animate wrapper. If you have your own component that you wish to animate, simply wrap it with an Animatable.View as follows:

<Animate.View animation="slideInRight" duration={1000}
  style={{
  height: 50,
  backgroundColor: 'white',
  flexDirection: 'row',
  padding: 5,
  alignItems: 'center',
}}>
   < Icon name="ios-search" style={{ fontSize: 25}} />
   < TextInput placeholder="Search" style={{ fontSize: 25,paddingLeft:15 }} />
</Animate.View>

We should see the result as shown in the following simulation:

Adding mock-up data for the result

In this step, we need to add mock-up data for our search bar result. The instances and modules we need to import from the react-native package are given below. You can simply copy the following code:

Then, we seed data by creating an array named listItems and fill the array with a mock-up list of data. You can use your own array list as needed.

const listItems = [
'Writing',
'Larning',
'Descipling',
'Productivity',
'Personal',
'Meditate',
'Mindfulness',
'Buddha',
'Dhamma',
'Health',
'Fitness',
'Music',
];

Here, we add a FlatList component imported for the react-native package to our view with our data list array listItems. You can do that by using the code in the following snippet:

<FlatList data={listItems}
 renderItem={({ item }) => (
 <Text style={{ padding: 20, fontSize: 20 }}>{item}</Text>
 )}
 keyExtractor={(item, index) => index.toString()}
/>

Hence, you get the following result, as shown below:

In this step, we modify the search bar to produce a focused view of the search bar. Therefore, when a user clicks on the search bar it is highlighted to separate it from the rest of the components in view so that it becomes easy and efficient to use.

For that, first, we need to create a state to handle our search bar state. You can do so by using the following piece of code:

state = {
  searchBarFocused: true,
};

Then, we add CSS styles to our FlatList component result by checking the search bar state to see if it’s true or false. You can use the following piece of code for this purpose:

<FlatList
   style={{
   backgroundColor: this.state.searchBarFocused
  ? 'rgba(0,0,0,0.3)'
  : 'white',
  }}
  data={listItems}
  renderItem={({ item }) => (
  <Text style={{ padding: 20, fontSize: 20 }}>{item}</Text>
  )}
  keyExtractor={(item, index) => index.toString()}
/>

As a result, you will see the following result in simulation:

Handle focus to search bar by keyboard

In this step, we handle the search bar focus element using the keyboard component from our react-native package.

First, import the keyboard component from the react-native package as follows:

import { Text, View, StyleSheet, TextInput, FlatList, Keyboard } from 'react-native';

Then, we add the keyboard listener to handle the focusing of the search bar so that each time a key is pressed on the keyboard, the search bar is focused or highlighted. The following piece of code can be used to do this:

componentDidMount() {
  this.keyboardDidShow = Keyboard.addListener(
   'keyboardDidShow',
   this.keyboardDidShow
  );
  this.keyboardWillShow = Keyboard.addListener(
  'keyboardWillShow',
   this.keyboardWillShow
);
this.keyboardWillHide = Keyboard.addListener(
  'keyboardWillHide',
  this.keyboardWillHide
   );
}
keyboardDidShow = () => {
  this.setState({ searchBarFocused: true });
};
keyboardWillShow = () => {
  this.setState({ searchBarFocused: true });
};
keyboardWillHide = () => {
  this.setState({ searchBarFocused: false });
};

We should get the following result:

Changing icon when search bar is focused

This is a simple and final step in which we change the search bar icon to a backward arrow when focused. The backward arrow brings users back out of the focused search bar and into the main view.

You can implement this by adding the following piece of code to your view:

<Icon name = {
  this.state.searchBarFocused ? 'md-arrow-back' : 'ios-search'
  }
  style={{ fontSize: 25 }}
/>

Finally, we can see our final search animation made using the react-native-animatable package below:

Recap

In this tutorial, we learned how to use basic animations in our React Native project using the react-native-animatable package. The steps are very simple and easy to understand. We also looked at a simple implementation of handlers to focus on the search bar. Using the same package, you can also create other types of animations like swipes, bounces, etc. You can view the live demo on snack.

credit

Udemy Searchbar Animation Tutorial from unsure programmer

Fritz

Our team has been at the forefront of Artificial Intelligence and Machine Learning research for more than 15 years and we're using our collective intelligence to help others learn, understand and grow using these new technologies in ethical and sustainable ways.

Comments 0 Responses

Leave a Reply

Your email address will not be published. Required fields are marked *

wix banner square