Quantcast
Channel: Active questions tagged react-native+typescript - Stack Overflow
Viewing all articles
Browse latest Browse all 6213

react native unfocus TextInput

$
0
0

I want to make a search bar in react-native like that :

enter image description here

If I click on icon, I focus on textInput, but if I click on other part of screen, unfocus the textInput.

The focus part is working with the ref, but I don't know if it's possible to unfocus the textinput when I click in other part of the screen.

<TextInput    multiline={false}    onChangeText={(text) => onChangeText(text)}    placeholder="search"    style={styles.textInput}    value={value}    ref={research}></TextInput><TouchableOpacity onPress={()=>research.current.focus()}><Ionicons name="md-search" size={24} ></Ionicons></TouchableOpacity>

Viewing all articles
Browse latest Browse all 6213

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>