Pass value from custom TextInput
up vote
1
down vote
favorite
I have a really simple but styled TextInput, declared as an own component.
It looks like this:
import React from 'react';
import { Text, View, TextInput } from 'react-native';
import styled from 'styled-components'
const StyledInput = styled.TextInput`
margin-bottom: 16px;
width: 345px;
padding-left: 8px;
`;
class Input extends React.Component {
constructor(props) {
super(props);
this.state = { text: '' };
}
render() {
return(
<StyledInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
// onChangeText={(text) => this.setState({text})}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
}
export default Input
My intention is to include that component in a scene and trigger the onChangeText event whenever the text input has changed. I've tried countless of ways... but with no success of passing the value.
<Input style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(code) => this.setState({code})}
label='Aktiveringskods'
placeholder='Aktiveringskod:'
/>
Using a regular TextInput does work flawless however:
<TextInput style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(username) => this.setState({username})}
label='Välj användarnamn'
placeholder='Användarnamn:'
/>
What am I missing here?
react-native react-native-component
add a comment |
up vote
1
down vote
favorite
I have a really simple but styled TextInput, declared as an own component.
It looks like this:
import React from 'react';
import { Text, View, TextInput } from 'react-native';
import styled from 'styled-components'
const StyledInput = styled.TextInput`
margin-bottom: 16px;
width: 345px;
padding-left: 8px;
`;
class Input extends React.Component {
constructor(props) {
super(props);
this.state = { text: '' };
}
render() {
return(
<StyledInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
// onChangeText={(text) => this.setState({text})}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
}
export default Input
My intention is to include that component in a scene and trigger the onChangeText event whenever the text input has changed. I've tried countless of ways... but with no success of passing the value.
<Input style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(code) => this.setState({code})}
label='Aktiveringskods'
placeholder='Aktiveringskod:'
/>
Using a regular TextInput does work flawless however:
<TextInput style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(username) => this.setState({username})}
label='Välj användarnamn'
placeholder='Användarnamn:'
/>
What am I missing here?
react-native react-native-component
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a really simple but styled TextInput, declared as an own component.
It looks like this:
import React from 'react';
import { Text, View, TextInput } from 'react-native';
import styled from 'styled-components'
const StyledInput = styled.TextInput`
margin-bottom: 16px;
width: 345px;
padding-left: 8px;
`;
class Input extends React.Component {
constructor(props) {
super(props);
this.state = { text: '' };
}
render() {
return(
<StyledInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
// onChangeText={(text) => this.setState({text})}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
}
export default Input
My intention is to include that component in a scene and trigger the onChangeText event whenever the text input has changed. I've tried countless of ways... but with no success of passing the value.
<Input style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(code) => this.setState({code})}
label='Aktiveringskods'
placeholder='Aktiveringskod:'
/>
Using a regular TextInput does work flawless however:
<TextInput style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(username) => this.setState({username})}
label='Välj användarnamn'
placeholder='Användarnamn:'
/>
What am I missing here?
react-native react-native-component
I have a really simple but styled TextInput, declared as an own component.
It looks like this:
import React from 'react';
import { Text, View, TextInput } from 'react-native';
import styled from 'styled-components'
const StyledInput = styled.TextInput`
margin-bottom: 16px;
width: 345px;
padding-left: 8px;
`;
class Input extends React.Component {
constructor(props) {
super(props);
this.state = { text: '' };
}
render() {
return(
<StyledInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
// onChangeText={(text) => this.setState({text})}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
}
export default Input
My intention is to include that component in a scene and trigger the onChangeText event whenever the text input has changed. I've tried countless of ways... but with no success of passing the value.
<Input style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(code) => this.setState({code})}
label='Aktiveringskods'
placeholder='Aktiveringskod:'
/>
Using a regular TextInput does work flawless however:
<TextInput style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(username) => this.setState({username})}
label='Välj användarnamn'
placeholder='Användarnamn:'
/>
What am I missing here?
react-native react-native-component
react-native react-native-component
asked Nov 19 at 15:22
entiendoNull
1,344722
1,344722
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
The reason is you hadn't pass onChangeText
to TextInput
in your custom Input
.
render() {
return(
<StyledInput
{...this.props}
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
Thanks a bunch... that explains it ;)
– entiendoNull
Nov 19 at 15:57
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
The reason is you hadn't pass onChangeText
to TextInput
in your custom Input
.
render() {
return(
<StyledInput
{...this.props}
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
Thanks a bunch... that explains it ;)
– entiendoNull
Nov 19 at 15:57
add a comment |
up vote
0
down vote
accepted
The reason is you hadn't pass onChangeText
to TextInput
in your custom Input
.
render() {
return(
<StyledInput
{...this.props}
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
Thanks a bunch... that explains it ;)
– entiendoNull
Nov 19 at 15:57
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
The reason is you hadn't pass onChangeText
to TextInput
in your custom Input
.
render() {
return(
<StyledInput
{...this.props}
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
The reason is you hadn't pass onChangeText
to TextInput
in your custom Input
.
render() {
return(
<StyledInput
{...this.props}
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
answered Nov 19 at 15:53
Tuấn Trần Duy
519510
519510
Thanks a bunch... that explains it ;)
– entiendoNull
Nov 19 at 15:57
add a comment |
Thanks a bunch... that explains it ;)
– entiendoNull
Nov 19 at 15:57
Thanks a bunch... that explains it ;)
– entiendoNull
Nov 19 at 15:57
Thanks a bunch... that explains it ;)
– entiendoNull
Nov 19 at 15:57
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53377722%2fpass-value-from-custom-textinput%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown