React-native-gifted-chat: Gap between text input and keyboard on iOS

Created on 5 Aug 2020  路  1Comment  路  Source: FaridSafi/react-native-gifted-chat

Issue Description

Gap between text input and keyboard on iOS

Steps to Reproduce / Code Snippets

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?

Additional Information

Most helpful comment

messages={messages}
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

>All comments

messages={messages}
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

Was this page helpful?
0 / 5 - 0 ratings