Gap between text input and keyboard on iOS
This first appeared when I implemented Tab and Stack Navigation.
I upgraded to the latest version of gifted chat but it is still not solved.
Any ideas?
user={{ _id: 1 }}
onSend={this.onSend}
bottomOffset={Platform.OS === "ios" && 48.5}
/>
This solved it for me https://github.com/FaridSafi/react-native-gifted-chat/issues/278
Most helpful comment
user={{ _id: 1 }}
onSend={this.onSend}
bottomOffset={Platform.OS === "ios" && 48.5}
/>
This solved it for me https://github.com/FaridSafi/react-native-gifted-chat/issues/278