react-native-rich-editor
react-native-rich-editor copied to clipboard
React Native Pell Rich Editor & iOS QuickType (predictive text)
Does the React Native Pell Rich Editor support the QuickType (predictive text) bar on iOS? I am using the library in the component below. Works great, except the QuickType bar is missing from the keyboard.
Because the rich editor is using a WebView component, as opposed to any TextInput, is this just a cost of using the Pell Rich Editor library, or is there a prop I haven't found in my reading that will enable the quick type bar?
`
<SafeAreaView>
<ScrollView style={styles.outerContainer}>
<RichEditor
maxLength={maxLength}
disabled={false}
editorStyle={styles.richEditor}
ref={richTextRef}
placeholder={isNote ? "Add your note..." : "Add an explanation here…"}
onChange={handleEditorChange}
initialContentHTML={text}
multiline
scrollEnabled
sentry-label={sentryLabel}
/>
</ScrollView>
<RichToolbar
editor={richTextRef}
actions={[
actions.setBold,
actions.setItalic,
actions.setUnderline,
actions.setStrikethrough,
actions.insertBulletsList,
actions.insertOrderedList,
actions.checkboxList,
actions.indent,
actions.undo,
]}
style={styles.toolbar}
/>
<HelperText
type={showErrorInsteadOfInfo ? "error" : "info"}
testID={`${testID}-remaining-characters`}
>
{text ? maxLength - text?.length : maxLength} characters remaining
</HelperText>
</SafeAreaView>`
also interested in this.
is autoCorrect={true}
what you're looking for?
is
autoCorrect={true}
what you're looking for?
yea, this is what I wanted, but seems no autoCorrect under RichEditor. Could be somewhere else?