RichEditorView icon indicating copy to clipboard operation
RichEditorView copied to clipboard

Scrolling Has Problems [Parent Issue]

Open cjwirth opened this issue 6 years ago • 5 comments

There have been issues with scrolling since the beginning. This issue is basically just the "megathread" of scrolling issues.

cjwirth avatar Jul 08 '17 18:07 cjwirth

@cjwirth were you able to make some progress on the issues?

mrlaunch avatar Sep 19 '18 15:09 mrlaunch

Interested in this as well! I am wonder how people currently workaround this issue.

hansemannn avatar Apr 06 '19 20:04 hansemannn

I am facing the same issue as view got bigger and bigger and go beyond the screen size hiding every other control on the screen. can we fix this view so If someone wants to see the text he/she can scroll within the specified height rather than the expanded height violating all the controls visibility

adeelilyas81 avatar Jul 23 '19 16:07 adeelilyas81

I am also facing same issue, did anyone got solution?

sravanr525 avatar Oct 24 '19 15:10 sravanr525

I am also facing same issue when implement for SwiftUI, after debug I see WKWebview automatic add adjustedContentInset to the ScrollView when keyboard open WKWebview-adjustedContentInset-debug After google and found the way disable this from stackoverflow

private func setup() {
    ...
    let notificationCenter = NotificationCenter.default()
    notificationCenter.removeObserver(self.webView, name: UIResponder.keyboardWillChangeFrameNotification, object: nil)
    notificationCenter.removeObserver(self.webView, name: UIResponder.keyboardWillShowNotification, object: nil)
    notificationCenter.removeObserver(self.webView, name: UIResponder.keyboardWillHideNotification, object: nil)
}

qhu91it avatar Oct 03 '21 12:10 qhu91it