react-native-rich-editor icon indicating copy to clipboard operation
react-native-rich-editor copied to clipboard

Darkmode

Open WilliamWatcher opened this issue 8 months ago • 0 comments

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch [email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/react-native-pell-rich-editor/src/RichEditor.js b/node_modules/react-native-pell-rich-editor/src/RichEditor.js
index 14bea22..12f62e1 100644
--- a/node_modules/react-native-pell-rich-editor/src/RichEditor.js
+++ b/node_modules/react-native-pell-rich-editor/src/RichEditor.js
@@ -261,6 +261,7 @@ export default class RichTextEditor extends Component {
           scrollEnabled={false}
           hideKeyboardAccessoryView={true}
           keyboardDisplayRequiresUserAction={false}
+          keyboardAppearance="dark"
           nestedScrollEnabled={!useContainer}
           style={[styles.webview, style]}
           {...rest}

This issue body was partially generated by patch-package.

WilliamWatcher avatar Apr 26 '25 14:04 WilliamWatcher