Home > Software design >  how to make the keyboard show search icon when searching ? (React-native)
how to make the keyboard show search icon when searching ? (React-native)

Time:10-25

I was wondering is it possible in react-native to when doing a search to search icon at the bottom corner like instagram.

Also is it possible using TextInput native Component Like this: enter image description here

CodePudding user response:

You need to add returnKeyType as 'search' for your required keyboard.

  • Related