-
Notifications
You must be signed in to change notification settings - Fork 272
Open keyboard animation #48
Comments
@Sundin I see the issue you are talking about. A potential fix would be to change this: UIView.animate(withDuration: duration,
delay: TimeInterval(0),
options: animationCurve,
animations: { self.view.layoutIfNeeded()
if self.isKeyboardIsShown {
self.messengerView.scrollToLastMessage(true)
}
},
completion: nil)
} To have the option of either scrolling during the animation or in the completion block, depending on a flag set during init. |
I am also having this issue, does not look very good when the last messages flicker. |
I have a fix for this issue. However, I cannot merge it because of issues with #42. Once those are resolved I will merged a fix for this issue. |
Fixed in #53 |
When opening the keyboard, the height of the tableview containing the messages seems to change without animating. This causes the behaviour seen in the gif below (here with slow animations enabled).
The text was updated successfully, but these errors were encountered: