When I close the app the text is cleared, using firebase to pull data how can I append them into gifted-chat?
onSend(messages = []) {
_userText.push({message: messages});
this.setState(previousState => ({
messages: GiftedChat.append(previousState.messages, messages),
}))
}
This will trigger when i input send from keyboard.