Reputation: 23
i want to prefill the text in the input text field of the react native gifted chat. Below is my code.
render() {
return (
<GiftedChat
messages={this.state.messages}
onSend={Fire.shared.send}
user={this.user}
renderUsernameOnMessage={true}
checkedGamerTag = {this.props.checkedGamerTag}
/>
);
}
Upvotes: 2
Views: 1201