for me keyboard should open automatically without clicking on it,i have used react-navigation so autofocus is not working while going from one screen to other screen
I tried this:
import React, {Component} from 'react';
import {
View,
StyleSheet,
TextInput,
TouchableOpacity,
Keyboard,
} from 'react-native';
export default class App extends Component {
constructor(props) {
super(props);
this.buildNameTextInput = React.createRef();
}
render() {
return (
<View style={styles.container}>
<View
style={{
backgroundColor: 'white',
alignItems: 'center',
flexDirection: 'row',
width: '90%',
paddingHorizontal: 10,
}}>
<TouchableOpacity />
<TextInput
autoFocus={!!this.buildNameTextInput}
ref={this.buildNameTextInput}
style={{backgroundColor: 'white', width: '80%'}}
/>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#8ee3ab',
},
});
but if i use this its not working after going to next screen, if any one have any solution plz post it, Thanks in advance....
use Reference to focus the text input this.refname.current.foicus()
Check below code