-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to scroll the content inside the editor in android #357
Comments
I am also facing same issue! |
We are experiencing this same issue as well. Any workaround or fix? |
Try this solution. It's working for me.
|
This solution worked with me |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Android :
Unable to scroll the content inside the editor
iOS :
Working Fine
I use following versions :
"react": "18.2.0",
"react-native": "0.73.2",
"react-native-pell-rich-editor": "1.8.8",
Description:
When using the editor on the Android platform, I'm encountering an issue where I'm unable to scroll the content inside the editor. This makes it difficult to view and edit longer texts or navigate through the content effectively.
Steps to Reproduce:
Expected Behavior:
`<RichEditor
scrollEnabled
ref={richtext}
initialHeight={50}
keyboardDisplayRequiresUserAction={false}
placeholder={languageService.t(AppConstant.COMMENT)}
style={styles.addCommentEditor}
editorStyle={styles.editorStyle}
onChange={(commentText) => setComment(commentText)}
onFocus={() => setFocusOnComment(true)}
onBlur={() => setFocusOnComment(false)}
/>
{isKeyboardVisible && comment.length > 0 && focusOnComment && (
)}
`
Recordings:
Screen.Recording.2024-04-10.at.5.13.24.PM.mov
Screen.Recording.2024-04-10.at.5.14.23.PM.mov
The text was updated successfully, but these errors were encountered: