getlogin = (text) => {
this.setState({ login: text })
}
state = {
component: <Addprofile getLogin={this.getLogin} />,
login: ''
}
<TextInput style = {styles.input}
underlineColorAndroid = "transparent"
placeholder = "Логин инстаграм"
placeholderTextColor = "#9a73ef"
autoCapitalize = "none"
onChangeText = {props.getLogin(text)}
/>