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

cookies aren't shared in iOS

Open podo-nuna opened this issue 4 years ago • 1 comments

There is an issue with not being able to set cookies on iOS. I tried to solve this problem and finally I found out that it can be resolved using the sharedCookiesEnabled={true} property in webView. Can you apply it to the next version?

podo-nuna avatar Jan 08 '21 11:01 podo-nuna

This should already be doable as {...rest} is passed onto the WebView on this line.

So something like:

<RichEditor
  ref={this._myEditor}
  placeholder="My placeholder"
  sharedCookiesEnabled
  ...etc...
/>

should work I believe.

SnidelyWhiplash avatar Jan 08 '21 19:01 SnidelyWhiplash