[Problem/Question]
When using the keyboardAvoidOffset
prop on the Channel
in the RN UIKit, it seems to work fine on iOS (increasing the value increases the padding between the keyboard and the chat content). But on Android, no matter what value I set, it does not change the way the content is positioned relative to the keyboard.
// If problem, please fill out the below. If question, please delete.
[UIKit Version]
// What version of the SDK are you using?
3.4.1
[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
<GroupChannelFragment
channel={channel}
onChannelDeleted={onChannelDeleted}
onPressHeaderLeft={() => undefined}
onPressHeaderRight={() => undefined}
keyboardAvoidOffset={100}
/>
[Frequency]
// How frequently is this issue occurring?
Always
[Current impact]
// How is this currently impacting your implementation?
The message input is slightly overlapping with the keyboard when it’s expanded.