Open arka422 opened 3 years ago
@arka422 Same issue for me too.
I Have observed one more thing. if I am using QuillToolbar from this library to show toolbar separately it is working fine in debug mode but in Release mode app is getting crashed.
@imnapo Noted same with me
<RNQuillEditor
ref={editorRef.mobile}
initialHtml=""
quill={{
modules: {
...TOOLBAR_OPTIONS,
},
placeholder: '',
theme: 'snow',
}}
webview={{
scrollEnabled: true, // enable scrolling in the web view
injectedJavaScript: var style = document.createElement('style'); style.innerHTML = '.ql-toolbar { position: absolute; bottom: 0; width: 100%; background: white !important; z-index: 2 }'; document.head.appendChild(style);
,
}}
/>
I am using native toolbar, but when I put long text toolbar disappeared. If I remove the text it will not come again. <QuillEditor ref={this._editor} quill={{ placeholder: 'this is placeholder', modules: { toolbar: true }, theme: 'snow', }} import3rdParties="cdn" initialHtml="Quill Editor for react-native" />