react-native-firebase-chat-demo
react-native-firebase-chat-demo copied to clipboard
Page not displaying anything
I am working on android. And the following are the installed versions. "react": "15.4.2", "react-native": "0.40.0", "react-native-gifted-messenger": "^0.1.4".
Page is not displaying anything and below on the android emulator there is a warning. Warning: 'keyboardShouldPersistTaps={true}' is deprecated. Use 'keyboardShouldPersistTaps="always"' instead.
Could you please help me on this.
Please comment all keyboardShouldPersistTaps
from GiftedMessenger.js and use
if (this.isLastMessageVisible()) { this.scrollToBottom(); }
this instead of
if (this.props.keyboardShouldPersistTaps === false) { if (this.isLastMessageVisible()) { this.scrollToBottom(); } }
I have got the same problem and solved.
Thank you. I will try the same.