react-native-cn-quill icon indicating copy to clipboard operation
react-native-cn-quill copied to clipboard

Toolbar Disappeared for long text

Open arka422 opened this issue 4 years ago • 3 comments

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" />

arka422 avatar Jun 25 '21 12:06 arka422

@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.

surendrayalakala avatar Nov 25 '21 10:11 surendrayalakala

@imnapo Noted same with me

nithinyell avatar Nov 25 '21 10:11 nithinyell

<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);, }} />

rohit20001221 avatar Mar 24 '23 20:03 rohit20001221