You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
Open the editor on an Android device.
Input or paste a lengthy text into the editor.
Attempt to scroll through the content inside the editor.
Expected Behavior:
I expect to be able to scroll vertically through the content inside the editor smoothly, allowing me to view and edit the entire text without any hindrance.
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: